diff options
Diffstat (limited to 'cpp/test/Slice/errorDetection/run.py')
-rwxr-xr-x | cpp/test/Slice/errorDetection/run.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/test/Slice/errorDetection/run.py b/cpp/test/Slice/errorDetection/run.py index 6a20425401c..d1a194258d4 100755 --- a/cpp/test/Slice/errorDetection/run.py +++ b/cpp/test/Slice/errorDetection/run.py @@ -58,6 +58,8 @@ for file in files: line1 = regex2.sub("", lines1[i].decode("utf-8")).strip() line2 = regex2.sub("", lines2[i]).strip() if line1 != line2: + print("\n" + line1) + print("\n" + line2) print("failed!") sys.exit(1) i = i + 1 |