diff options
Diffstat (limited to 'cpp/test/IceGrid/replication/test.py')
-rw-r--r-- | cpp/test/IceGrid/replication/test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/test/IceGrid/replication/test.py b/cpp/test/IceGrid/replication/test.py index 5cace6d5ee2..df9a7ce053c 100644 --- a/cpp/test/IceGrid/replication/test.py +++ b/cpp/test/IceGrid/replication/test.py @@ -10,4 +10,5 @@ clientProps = lambda process, current: { "ServerDir" : current.getBuildDir("server") } -TestSuite(__file__, [ IceGridTestCase(client=IceGridClient(props=clientProps)) ], runOnMainThread=True, multihost=False) +if os.getuid() != 0: + TestSuite(__file__, [ IceGridTestCase(client=IceGridClient(props=clientProps)) ], runOnMainThread=True, multihost=False) |