summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/run_format_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/run_format_tests.py')
-rwxr-xr-xdebian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/run_format_tests.py58
1 files changed, 58 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/run_format_tests.py b/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/run_format_tests.py
new file mode 100755
index 00000000..671188c2
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/run_format_tests.py
@@ -0,0 +1,58 @@
+#!/usr/bin/env python
+#
+# Reads tests from the .test files on the command line (or the built-in set)
+# and runs them, or writes a CTest script to run them.
+#
+# * @author Ben Gardner October 2009
+# * @author Guy Maurel October 2015
+# * @author Matthew Woehlke June 2018
+#
+
+import argparse
+import os
+import sys
+
+import test_uncrustify as tu
+
+
+# -----------------------------------------------------------------------------
+def main(argv):
+ parser = argparse.ArgumentParser(description='Run uncrustify format tests')
+ tu.add_format_tests_arguments(parser)
+ args = tu.parse_args(parser)
+
+ # Read tests
+ tests = []
+ print('Tests: {!s}'.format(args.tests))
+ for group in args.tests:
+ tests_file = os.path.join(tu.test_dir, '{}.test'.format(group))
+ tests += tu.read_format_tests(tests_file, group)
+
+ if args.write_ctest:
+ tu.config.python_exe = args.python
+ tu.config.uncrustify_exe = tu.fixup_ctest_path(
+ tu.config.uncrustify_exe, args.cmake_config)
+
+ with open(args.write_ctest, 'wt') as f:
+ for test in tests:
+ test.print_as_ctest(f)
+
+ else:
+ if args.select:
+ s = tu.Selector(args.select)
+ else:
+ s = None
+
+ counts = tu.run_tests(tests, args, s)
+ tu.report(counts)
+
+ if counts['failing'] > 0:
+ sys.exit(2)
+ if counts['mismatch'] > 0 or counts['unstable'] > 0:
+ sys.exit(1)
+
+
+# %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+if __name__ == '__main__':
+ sys.exit(main(sys.argv))