diff options
author | Georg Brandl <georg@python.org> | 2006-02-20 10:32:02 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-02-20 10:32:02 (GMT) |
commit | 5771310a09640388066fd1747842035f0df2f8a5 (patch) | |
tree | 12f87dee5cb491aa461d7f78e0c1f6f905675ad1 /Lib/test/test_fcntl.py | |
parent | 81299ad1d73320306b3279a4116733107f2a6fbc (diff) | |
download | cpython-5771310a09640388066fd1747842035f0df2f8a5.zip cpython-5771310a09640388066fd1747842035f0df2f8a5.tar.gz cpython-5771310a09640388066fd1747842035f0df2f8a5.tar.bz2 |
Bug #1101233: fix test_fcntl on netbsd2 platform.
Diffstat (limited to 'Lib/test/test_fcntl.py')
-rwxr-xr-x | Lib/test/test_fcntl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_fcntl.py b/Lib/test/test_fcntl.py index 46bccc1..f53b13a 100755 --- a/Lib/test/test_fcntl.py +++ b/Lib/test/test_fcntl.py @@ -20,7 +20,7 @@ else: if sys.platform.startswith('atheos'): start_len = "qq" -if sys.platform in ('netbsd1', 'Darwin1.2', 'darwin', +if sys.platform in ('netbsd1', 'netbsd2', 'Darwin1.2', 'darwin', 'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5', 'freebsd6', 'freebsd7', 'bsdos2', 'bsdos3', 'bsdos4', |