diff options
author | Hye-Shik Chang <hyeshik@gmail.com> | 2004-08-18 15:13:41 (GMT) |
---|---|---|
committer | Hye-Shik Chang <hyeshik@gmail.com> | 2004-08-18 15:13:41 (GMT) |
commit | f64700a512e89c322f46f3cabda3bf58573eda54 (patch) | |
tree | 17fcf28d7178609521bf7f9f562d8d7f8f296608 /Lib/test/test_socket.py | |
parent | 75b9da4aaf6b1636a116f4afd5b0d11a642c4401 (diff) | |
download | cpython-f64700a512e89c322f46f3cabda3bf58573eda54.zip cpython-f64700a512e89c322f46f3cabda3bf58573eda54.tar.gz cpython-f64700a512e89c322f46f3cabda3bf58573eda54.tar.bz2 |
Add support for FreeBSD 6.
Diffstat (limited to 'Lib/test/test_socket.py')
-rw-r--r-- | Lib/test/test_socket.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 4e0e242..8222c0b 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -311,7 +311,7 @@ class GeneralModuleTests(unittest.TestCase): # Find one service that exists, then check all the related interfaces. # I've ordered this by protocols that have both a tcp and udp # protocol, at least for modern Linuxes. - if sys.platform in ('freebsd4', 'freebsd5', 'darwin'): + if sys.platform in ('freebsd4', 'freebsd5', 'freebsd6', 'darwin'): # avoid the 'echo' service on this platform, as there is an # assumption breaking non-standard port/protocol entry services = ('daytime', 'qotd', 'domain') |