aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/cli/llvmtestcase.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/cli/llvmtestcase.py b/tests/cli/llvmtestcase.py
index db3635f..0f29ce6 100644
--- a/tests/cli/llvmtestcase.py
+++ b/tests/cli/llvmtestcase.py
@@ -21,6 +21,9 @@ def debug(test):
def wrapper(*args, **kwargs):
# Catch any exceptions so we can dump all the output
try:
+ self = args[0]
+ self.maxDiff = None # So we can see large diffs between
+ # expected/actual
test(*args, **kwargs)
except subprocess.CalledProcessError as exc:
print("Error in {}:".format(test.__name__))