diff options
author | Bernard Normier <bernard@zeroc.com> | 2016-10-25 18:35:15 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2016-10-25 18:35:15 -0400 |
commit | 95624751e9d98d1265e0a007e7d7a1186036750b (patch) | |
tree | d13da90f17629496d13d5badb32b04803239d662 /cpp/test/Slice/errorDetection/run.py | |
parent | Nuget package updates (diff) | |
download | ice-95624751e9d98d1265e0a007e7d7a1186036750b.tar.bz2 ice-95624751e9d98d1265e0a007e7d7a1186036750b.tar.xz ice-95624751e9d98d1265e0a007e7d7a1186036750b.zip |
Refactored string literal generation and updated identityToString format
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 |