summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tempfile.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2004-09-15 06:02:54 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2004-09-15 06:02:54 (GMT)
commit9996828caad6a727e075ec83a75af66477a8a6f4 (patch)
tree0d5e337efbb6b02342aa07d78ee98612b826c1b5 /Lib/test/test_tempfile.py
parent74a249e1a9424c6055435a855916a580d443189f (diff)
downloadcpython-9996828caad6a727e075ec83a75af66477a8a6f4.zip
cpython-9996828caad6a727e075ec83a75af66477a8a6f4.tar.gz
cpython-9996828caad6a727e075ec83a75af66477a8a6f4.tar.bz2
Patch #1026986: Add OpenBSD 3.5 and 3.6 to list of broken systems.
Diffstat (limited to 'Lib/test/test_tempfile.py')
-rw-r--r--Lib/test/test_tempfile.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py
index 83e2174..d5ae5de 100644
--- a/Lib/test/test_tempfile.py
+++ b/Lib/test/test_tempfile.py
@@ -27,6 +27,8 @@ has_spawnl = hasattr(os, 'spawnl')
# number of files that can be opened at one time (see ulimit -n)
if sys.platform == 'mac':
TEST_FILES = 32
+elif sys.platform == 'openbsd3':
+ TEST_FILES = 48
else:
TEST_FILES = 100