114114 network - It is okay to run tests that use external network
115115 resource, e.g. testing SSL support for sockets.
116116
117- bsddb - It is okay to run the bsddb testsuite, which takes
118- a long time to complete.
119-
120117 decimal - Test the decimal module against a large suite that
121118 verifies compliance with standards.
122119
130127 gui - Run tests that require a running GUI.
131128
132129To enable all resources except one, use '-uall,-<resource>'. For
133- example, to run all the tests except for the bsddb tests, give the
134- option '-uall,-bsddb '.
130+ example, to run all the tests except for the gui tests, give the
131+ option '-uall,-gui '.
135132"""
136133
137134import getopt
182179
183180from test import support
184181
185- RESOURCE_NAMES = ('audio' , 'curses' , 'largefile' , 'network' , 'bsddb' ,
182+ RESOURCE_NAMES = ('audio' , 'curses' , 'largefile' , 'network' ,
186183 'decimal' , 'compiler' , 'subprocess' , 'urlfetch' , 'gui' )
187184
188185
@@ -900,7 +897,6 @@ def printlist(x, width=70, indent=4):
900897 'win32' :
901898 """
902899 test__locale
903- test_bsddb3
904900 test_crypt
905901 test_curses
906902 test_dbm
@@ -937,8 +933,6 @@ def printlist(x, width=70, indent=4):
937933 'mac' :
938934 """
939935 test_atexit
940- test_bsddb
941- test_bsddb3
942936 test_bz2
943937 test_crypt
944938 test_curses
@@ -966,7 +960,6 @@ def printlist(x, width=70, indent=4):
966960 """ ,
967961 'unixware7' :
968962 """
969- test_bsddb
970963 test_epoll
971964 test_largefile
972965 test_kqueue
@@ -978,7 +971,6 @@ def printlist(x, width=70, indent=4):
978971 """ ,
979972 'openunix8' :
980973 """
981- test_bsddb
982974 test_epoll
983975 test_largefile
984976 test_kqueue
@@ -991,7 +983,6 @@ def printlist(x, width=70, indent=4):
991983 'sco_sv3' :
992984 """
993985 test_asynchat
994- test_bsddb
995986 test_fork1
996987 test_epoll
997988 test_gettext
@@ -1012,8 +1003,6 @@ def printlist(x, width=70, indent=4):
10121003 'darwin' :
10131004 """
10141005 test__locale
1015- test_bsddb
1016- test_bsddb3
10171006 test_curses
10181007 test_epoll
10191008 test_dbm_gnu
@@ -1025,7 +1014,6 @@ def printlist(x, width=70, indent=4):
10251014 """ ,
10261015 'sunos5' :
10271016 """
1028- test_bsddb
10291017 test_curses
10301018 test_dbm
10311019 test_epoll
@@ -1038,7 +1026,6 @@ def printlist(x, width=70, indent=4):
10381026 """ ,
10391027 'hp-ux11' :
10401028 """
1041- test_bsddb
10421029 test_curses
10431030 test_epoll
10441031 test_dbm_gnu
@@ -1068,7 +1055,6 @@ def printlist(x, width=70, indent=4):
10681055 """ ,
10691056 'cygwin' :
10701057 """
1071- test_bsddb3
10721058 test_curses
10731059 test_dbm
10741060 test_epoll
@@ -1082,7 +1068,6 @@ def printlist(x, width=70, indent=4):
10821068 'os2emx' :
10831069 """
10841070 test_audioop
1085- test_bsddb3
10861071 test_curses
10871072 test_epoll
10881073 test_kqueue
@@ -1096,8 +1081,6 @@ def printlist(x, width=70, indent=4):
10961081 """ ,
10971082 'freebsd4' :
10981083 """
1099- test_bsddb
1100- test_bsddb3
11011084 test_epoll
11021085 test_dbm_gnu
11031086 test_locale
@@ -1115,8 +1098,6 @@ def printlist(x, width=70, indent=4):
11151098 """ ,
11161099 'aix5' :
11171100 """
1118- test_bsddb
1119- test_bsddb3
11201101 test_bz2
11211102 test_epoll
11221103 test_dbm_gnu
@@ -1132,8 +1113,6 @@ def printlist(x, width=70, indent=4):
11321113 """ ,
11331114 'openbsd3' :
11341115 """
1135- test_bsddb
1136- test_bsddb3
11371116 test_ctypes
11381117 test_epoll
11391118 test_dbm_gnu
@@ -1149,8 +1128,6 @@ def printlist(x, width=70, indent=4):
11491128 """ ,
11501129 'netbsd3' :
11511130 """
1152- test_bsddb
1153- test_bsddb3
11541131 test_ctypes
11551132 test_curses
11561133 test_epoll
0 commit comments