summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2024-07-18 18:16:48 +0200
committerGitHub <noreply@github.com>2024-07-18 18:16:48 +0200
commit2a9b6174d49e8dcdbab5c3ef84823b8bccba1027 (patch)
treecdaab3f597855af921e6967414955554b51926e8
parentFix __repr__ for Ice.Unset (#2484) (diff)
downloadice-2a9b6174d49e8dcdbab5c3ef84823b8bccba1027.tar.bz2
ice-2a9b6174d49e8dcdbab5c3ef84823b8bccba1027.tar.xz
ice-2a9b6174d49e8dcdbab5c3ef84823b8bccba1027.zip
Removed bogus FD limit setting for the binding test (#2520)
-rw-r--r--scripts/tests/Ice/binding.py15
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))])