diff options
author | Joe George <joe@zeroc.com> | 2018-04-09 14:45:01 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2018-04-09 14:45:01 -0400 |
commit | 0a37d62cd9ce62de708f685cfa0fc30058ab83ac (patch) | |
tree | 05d42719daf7b3ca0f919406b2f3ac407691ff94 /cpp/test/IceGrid/allocation/test.py | |
parent | Fix typo (diff) | |
download | ice-0a37d62cd9ce62de708f685cfa0fc30058ab83ac.tar.bz2 ice-0a37d62cd9ce62de708f685cfa0fc30058ab83ac.tar.xz ice-0a37d62cd9ce62de708f685cfa0fc30058ab83ac.zip |
ICE-8813 - Skip some IceGrid tests when root user
Diffstat (limited to 'cpp/test/IceGrid/allocation/test.py')
-rw-r--r-- | cpp/test/IceGrid/allocation/test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/test/IceGrid/allocation/test.py b/cpp/test/IceGrid/allocation/test.py index 33326c144b2..5540e4d2d3f 100644 --- a/cpp/test/IceGrid/allocation/test.py +++ b/cpp/test/IceGrid/allocation/test.py @@ -8,4 +8,5 @@ # # ********************************************************************** -TestSuite(__file__, [IceGridTestCase(exevars={ "verifier.dir": "verifier" })], runOnMainThread=True, multihost=False) +if os.getuid() != 0: + TestSuite(__file__, [IceGridTestCase(exevars={ "verifier.dir": "verifier" })], runOnMainThread=True, multihost=False) |