summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/test_uncrustify/failure.py
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-11-18 22:24:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-11-18 22:24:33 +0900
commit3b0c3b8206964b85bf3716c962d26dd15c4f285f (patch)
tree2f0973dbf96c2892d19a55b6f846f130e7399a48 /debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/test_uncrustify/failure.py
parentff287d2f48d4f4253bf84f19bd7fe937b61ede45 (diff)
downloadextra-dependencies-master.tar.gz
extra-dependencies-master.zip
Remove uncrustify-trinity.HEADmaster
It is no longer necessary to maintain a customize trinity version. Upstream version can be used as is. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/test_uncrustify/failure.py')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/test_uncrustify/failure.py82
1 files changed, 0 insertions, 82 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/test_uncrustify/failure.py b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/test_uncrustify/failure.py
deleted file mode 100644
index 0972930f..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/test_uncrustify/failure.py
+++ /dev/null
@@ -1,82 +0,0 @@
-# Exceptions when a test fails.
-#
-# * @author Matthew Woehlke June 2018
-#
-
-
-# =============================================================================
-class Failure(Exception):
- pass
-
-# =============================================================================
-class TestDeclarationParseError(Failure):
- # -------------------------------------------------------------------------
- def __init__(self, test_suite, line_number):
- self.test_suite = test_suite
- self.line_number = line_number
-
- # -------------------------------------------------------------------------
- def __str__(self):
- return 'Error parsing line {!r} from the {!r} test suite'.format(
- self.line_number, self.test_suite)
-
-
-# =============================================================================
-class ExecutionFailure(Failure):
- # -------------------------------------------------------------------------
- def __init__(self, exception):
- self.exception = exception
-
- # -------------------------------------------------------------------------
- def __str__(self):
- return str(self.exception)
-
-
-# =============================================================================
-class MissingFailure(Failure):
- # -------------------------------------------------------------------------
- def __init__(self, exception, missing_path):
- self.exception = exception
- self.missing_path = missing_path
-
- # -------------------------------------------------------------------------
- def __str__(self):
- return 'Expected output file not found: {!r}'.format(self.missing_path)
-
-
-# =============================================================================
-class MismatchFailure(Failure):
- # -------------------------------------------------------------------------
- def __init__(self, expected, actual):
- self.expected_path = expected
- self.actual_path = actual
-
- # -------------------------------------------------------------------------
- def __str__(self):
- return 'Output {!r} does not match expected output {!r}'.format(
- self.actual_path, self.expected_path)
-
-
-# =============================================================================
-class UnstableFailure(Failure):
- # -------------------------------------------------------------------------
- def __init__(self, expected, actual):
- self.expected_path = expected
- self.actual_path = actual
-
- # -------------------------------------------------------------------------
- def __str__(self):
- return 'Output {!r} does not match expected output {!r}'.format(
- self.actual_path, self.expected_path)
-
-# =============================================================================
-class UnexpectedlyPassingFailure(Failure):
- # -------------------------------------------------------------------------
- def __init__(self, expected, actual):
- self.expected_path = expected
- self.actual_path = actual
-
- # -------------------------------------------------------------------------
- def __str__(self):
- return 'Output {!r} unexpectedly matches expected output {!r}'.format(
- self.actual_path, self.expected_path)