summaryrefslogtreecommitdiff
path: root/cpp/test/IceGrid/activation/test.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2019-09-30 11:43:39 +0200
committerBenoit Foucher <benoit@zeroc.com>2019-09-30 11:43:39 +0200
commit84383220ac2916bb6f4f9dc3829d6365352f8851 (patch)
tree9cbb8039d95e2e0b6f534c876b30adea488bd0ef /cpp/test/IceGrid/activation/test.py
parentSwift Ice/acm test fixes - Close #535 (diff)
downloadice-84383220ac2916bb6f4f9dc3829d6365352f8851.tar.bz2
ice-84383220ac2916bb6f4f9dc3829d6365352f8851.tar.xz
ice-84383220ac2916bb6f4f9dc3829d6365352f8851.zip
Fixed IceGrid/activation test to no longer print warnings, fixes #561
Diffstat (limited to 'cpp/test/IceGrid/activation/test.py')
-rw-r--r--cpp/test/IceGrid/activation/test.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/test/IceGrid/activation/test.py b/cpp/test/IceGrid/activation/test.py
index 140eefb5dfb..89e334d3af3 100644
--- a/cpp/test/IceGrid/activation/test.py
+++ b/cpp/test/IceGrid/activation/test.py
@@ -2,6 +2,9 @@
#
# Copyright (c) ZeroC, Inc. All rights reserved.
#
+outfilters = [re.compile("warning: server activation failed"),
+ re.compile("cannot execute"),
+ re.compile("cannot change working directory")]
if isinstance(platform, Windows) or os.getuid() != 0:
- TestSuite(__file__, [IceGridTestCase()], multihost=False)
+ TestSuite(__file__, [IceGridTestCase(icegridnode=IceGridNode(outfilters=outfilters))], multihost=False)