summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/run_sources_tests.py
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-01 12:38:43 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-01 12:38:43 +0900
commitb67b7f2b784c7105e88a5e639d9d84736ae2cbc1 (patch)
tree0fd16d439c681c07d57d7f0d544c7582e04c3a31 /debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/run_sources_tests.py
parentc0a6f1b84c84749908961579b84513fd9f9d9eac (diff)
downloadextra-dependencies-b67b7f2b784c7105e88a5e639d9d84736ae2cbc1.tar.gz
extra-dependencies-b67b7f2b784c7105e88a5e639d9d84736ae2cbc1.zip
uncrustify-trinity: updated based on upstream version 0.78.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/run_sources_tests.py')
-rwxr-xr-xdebian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/run_sources_tests.py48
1 files changed, 0 insertions, 48 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/run_sources_tests.py b/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/run_sources_tests.py
deleted file mode 100755
index ebbc6623..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/run_sources_tests.py
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/usr/bin/env python
-#
-# Checks the formatting of uncrustify's own sources.
-#
-# * @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 source tests')
- tu.add_source_tests_arguments(parser)
- args = tu.parse_args(parser)
-
- # Get required filesystem information
- root = os.path.dirname(tu.test_dir)
- src_dir = os.path.join(root, 'src')
- config = os.path.join(root, 'forUncrustifySources.cfg')
-
- # Create tests
- tests = []
- for s in os.listdir(src_dir):
- if os.path.splitext(s)[1] in ('.cpp', '.h'):
- t = tu.SourceTest()
- filepath = os.path.join(src_dir, s)
- t.build(test_input=filepath, test_lang='CPP', test_config=config,
- test_expected=filepath)
- tests.append(t)
-
- counts = tu.run_tests(tests, args)
- tu.report(counts)
-
- if counts['failing'] > 0:
- sys.exit(2)
- if counts['mismatch'] > 0:
- sys.exit(1)
-
-
-# %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-if __name__ == '__main__':
- sys.exit(main(sys.argv))