Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
614029f5
Commit
614029f5
authored
Jun 19, 2008
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
don't bother expecting to skip tests that don't exist
parent
817e65fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
21 deletions
+0
-21
Lib/test/regrtest.py
Lib/test/regrtest.py
+0
-21
No files found.
Lib/test/regrtest.py
View file @
614029f5
...
...
@@ -870,7 +870,6 @@ _expectations = {
test_crypt
test_curses
test_dbm
test_dl
test_fcntl
test_fork1
test_epoll
...
...
@@ -879,7 +878,6 @@ _expectations = {
test_ioctl
test_largefile
test_kqueue
test_mhlib
test_openpty
test_ossaudiodev
test_pipes
...
...
@@ -897,7 +895,6 @@ _expectations = {
'linux2'
:
"""
test_curses
test_dl
test_largefile
test_kqueue
test_ossaudiodev
...
...
@@ -911,7 +908,6 @@ _expectations = {
test_crypt
test_curses
test_dbm
test_dl
test_fcntl
test_fork1
test_epoll
...
...
@@ -936,7 +932,6 @@ _expectations = {
'unixware7'
:
"""
test_bsddb
test_dl
test_epoll
test_largefile
test_kqueue
...
...
@@ -949,7 +944,6 @@ _expectations = {
'openunix8'
:
"""
test_bsddb
test_dl
test_epoll
test_largefile
test_kqueue
...
...
@@ -963,7 +957,6 @@ _expectations = {
"""
test_asynchat
test_bsddb
test_dl
test_fork1
test_epoll
test_gettext
...
...
@@ -1012,7 +1005,6 @@ _expectations = {
"""
test_bsddb
test_curses
test_dl
test_epoll
test_dbm_gnu
test_gzip
...
...
@@ -1029,7 +1021,6 @@ _expectations = {
'atheos'
:
"""
test_curses
test_dl
test_dbm_gnu
test_epoll
test_largefile
...
...
@@ -1058,11 +1049,9 @@ _expectations = {
test_audioop
test_bsddb3
test_curses
test_dl
test_epoll
test_kqueue
test_largefile
test_mhlib
test_mmap
test_openpty
test_ossaudiodev
...
...
@@ -1090,7 +1079,6 @@ _expectations = {
test_bsddb
test_bsddb3
test_bz2
test_dl
test_epoll
test_dbm_gnu
test_gzip
...
...
@@ -1105,7 +1093,6 @@ _expectations = {
test_bsddb
test_bsddb3
test_ctypes
test_dl
test_epoll
test_dbm_gnu
test_locale
...
...
@@ -1120,7 +1107,6 @@ _expectations = {
test_bsddb3
test_ctypes
test_curses
test_dl
test_epoll
test_dbm_gnu
test_locale
...
...
@@ -1164,13 +1150,6 @@ class _ExpectedSkips:
if
test_timeout
.
skip_expected
:
self
.
expected
.
add
(
'test_timeout'
)
if
not
sys
.
platform
in
(
"mac"
,
"darwin"
):
MAC_ONLY
=
[
"test_macostools"
,
"test_aepack"
,
"test_plistlib"
,
"test_scriptpackages"
,
"test_applesingle"
]
for
skip
in
MAC_ONLY
:
self
.
expected
.
add
(
skip
)
if
sys
.
platform
!=
"win32"
:
# test_sqlite is only reliable on Windows where the library
# is distributed with Python
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment