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/IceGrid/fileLock/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/IceGrid/fileLock/test.py')
-rw-r--r-- | cpp/test/IceGrid/fileLock/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/IceGrid/fileLock/test.py b/cpp/test/IceGrid/fileLock/test.py index 9a9ee60ece1..a15d0099bee 100644 --- a/cpp/test/IceGrid/fileLock/test.py +++ b/cpp/test/IceGrid/fileLock/test.py @@ -15,7 +15,7 @@ class IceGridAdminTestCase(IceGridTestCase): sys.stdout.write("testing IceGrid file lock... ") registry = IceGridRegistryMaster(portnum=25, readyCount=0, quiet=True); registry.start(current) - registry.expect(".*IceUtil::FileLockException.*") + registry.expect(current, ".*IceUtil::FileLockException.*") registry.stop(current, False) print("ok") |