Patch #1026986: Add OpenBSD 3.5 and 3.6 to list of broken systems.

This commit is contained in:
Martin v. Löwis 2004-09-15 06:02:54 +00:00
parent 74a249e1a9
commit 9996828caa
3 changed files with 5 additions and 3 deletions

View file

@ -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