blob: d84f4c874b532b0918aaef48a9c0c8764db61548 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# -*- coding: utf-8 -*-
#
# Copyright (c) ZeroC, Inc. All rights reserved.
#
outfilters = [re.compile("cannot find the file specified"),
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(icegridnode=IceGridNode(outfilters=outfilters))], multihost=False)
|