diff options
author | Benoit Foucher <benoit@zeroc.com> | 2019-09-30 11:43:39 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2019-09-30 11:43:39 +0200 |
commit | 84383220ac2916bb6f4f9dc3829d6365352f8851 (patch) | |
tree | 9cbb8039d95e2e0b6f534c876b30adea488bd0ef /cpp | |
parent | Swift Ice/acm test fixes - Close #535 (diff) | |
download | ice-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')
-rw-r--r-- | cpp/test/IceGrid/activation/test.py | 5 |
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) |