diff options
-rw-r--r-- | scripts/tests/Ice/binding.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/scripts/tests/Ice/binding.py b/scripts/tests/Ice/binding.py deleted file mode 100644 index 8dea61ab254..00000000000 --- a/scripts/tests/Ice/binding.py +++ /dev/null @@ -1,15 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) ZeroC, Inc. All rights reserved. -# - -def setlimits(): - if not isinstance(platform, Windows): - # - # Set a low limit for the number of available file descriptors. This is needed for the max FD test - # which could otherwise potentially allocate many file descriptors on the system. - # - import resource - resource.setrlimit(resource.RLIMIT_NOFILE, (92, 92)) - -TestSuite(__name__, [ClientServerTestCase(server=Server(preexec_fn=setlimits))]) |