blob: be34ed4c389261e2a60684031f87743b505e7d77 (
plain)
1
2
3
4
5
6
7
8
9
|
# -*- coding: utf-8 -*-
#
# Copyright (c) ZeroC, Inc. All rights reserved.
#
clientProps = lambda process, current: { "ServerDir" : current.getBuildDir("server") }
if isinstance(platform, Windows) or os.getuid() != 0:
TestSuite(__file__, [ IceGridTestCase(client=IceGridClient(props=clientProps)) ], runOnMainThread=True, multihost=False)
|