blob: 5ccb55bbbfe0839e625ebaf5149fb2d39c349184 (
plain)
1
2
3
4
5
6
7
8
9
|
#
# Copyright (c) ZeroC, Inc. All rights reserved.
#
if not isinstance(platform, Darwin) and (isinstance(platform, Windows) or os.getuid() == 0):
TestSuite(__file__, [
ClientServerTestCase(),
ClientServerTestCase(name="client/custom server", server="servercustom")
], options={ "mx" : [False] })
|