diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-01-05 12:17:23 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-01-05 12:17:23 +0100 |
commit | 3cbf6bc85466e5a4aa1be504e6e67eaa8bf0f186 (patch) | |
tree | b710c6b76aff8a67a95425894f7796b8f58d3657 /cpp/test/Slice/errorDetection/test.py | |
parent | Added workaround for running Safari tests with Jenkins (diff) | |
download | ice-3cbf6bc85466e5a4aa1be504e6e67eaa8bf0f186.tar.bz2 ice-3cbf6bc85466e5a4aa1be504e6e67eaa8bf0f186.tar.xz ice-3cbf6bc85466e5a4aa1be504e6e67eaa8bf0f186.zip |
Thread safety fixes for tests scripts
Diffstat (limited to 'cpp/test/Slice/errorDetection/test.py')
-rw-r--r-- | cpp/test/Slice/errorDetection/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Slice/errorDetection/test.py b/cpp/test/Slice/errorDetection/test.py index 71953c3086c..32eec3e3f66 100644 --- a/cpp/test/Slice/errorDetection/test.py +++ b/cpp/test/Slice/errorDetection/test.py @@ -27,7 +27,7 @@ class SliceErrorDetectionTestCase(ClientTestCase): # Don't print out slice2cpp output and expect failures slice2cpp.run(current, args=args, exitstatus=1) - output = slice2cpp.getOutput() + output = slice2cpp.getOutput(current) regex1 = re.compile("\.ice$", re.IGNORECASE) lines1 = output.strip().split("\n") |