diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-09-05 02:57:01 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-09-05 02:57:01 (GMT) |
commit | 4bc2c0919b2ed31851e9c3423ab85614fe35a75a (patch) | |
tree | 2cb80a998fc4fd5b86cbff36741781d208e2a678 /Lib/test | |
parent | d34e4272e0e82dcbf21fc6378c393bca7db0dfd7 (diff) | |
download | cpython-4bc2c0919b2ed31851e9c3423ab85614fe35a75a.zip cpython-4bc2c0919b2ed31851e9c3423ab85614fe35a75a.tar.gz cpython-4bc2c0919b2ed31851e9c3423ab85614fe35a75a.tar.bz2 |
Patch #1540470, for OpenBSD 4.0. Backport candidate for 2.[34].
Diffstat (limited to 'Lib/test')
-rwxr-xr-x | Lib/test/test_fcntl.py | 2 | ||||
-rw-r--r-- | Lib/test/test_tempfile.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_fcntl.py b/Lib/test/test_fcntl.py index 58a57b5..2d800b2 100755 --- a/Lib/test/test_fcntl.py +++ b/Lib/test/test_fcntl.py @@ -25,7 +25,7 @@ if sys.platform in ('netbsd1', 'netbsd2', 'netbsd3', 'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5', 'freebsd6', 'freebsd7', 'bsdos2', 'bsdos3', 'bsdos4', - 'openbsd', 'openbsd2', 'openbsd3'): + 'openbsd', 'openbsd2', 'openbsd3', 'openbsd4'): if struct.calcsize('l') == 8: off_t = 'l' pid_t = 'i' diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py index aeaa77e..2047a63 100644 --- a/Lib/test/test_tempfile.py +++ b/Lib/test/test_tempfile.py @@ -27,7 +27,7 @@ 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': +elif sys.platform in ('openbsd3', 'openbsd4'): TEST_FILES = 48 else: TEST_FILES = 100 |