diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-01 12:38:43 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-01 12:38:43 +0900 |
commit | b67b7f2b784c7105e88a5e639d9d84736ae2cbc1 (patch) | |
tree | 0fd16d439c681c07d57d7f0d544c7582e04c3a31 /debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/test_uncrustify/failure.py | |
parent | c0a6f1b84c84749908961579b84513fd9f9d9eac (diff) | |
download | extra-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/test_uncrustify/failure.py')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/test_uncrustify/failure.py | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/test_uncrustify/failure.py b/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/test_uncrustify/failure.py deleted file mode 100644 index 0972930f..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/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) |