mirror of
https://github.com/python/cpython.git
synced 2026-01-09 08:52:34 +00:00
Another new test using "from test.test_support import ...", causing
subtle breakage on Windows (the test is skipped here, but the TestSkipped
exception wasn't recognized as such, because of duplicate copies of
test_support got loaded; so the test looks like a failure under Windows
instead of a skip).
Repaired the import, but
THIS TEST *WILL* FAIL ON OTHER SYSTEMS NOW!
Again due to the duplicate copies of test_support, the checked-in
"expected output" file actually contains verbose-mode output. I can't
generate the *correct* non-verbose output on my system. So, somebody
please do that.
This commit is contained in:
parent
6d7c442e03
commit
43dee06471
1 changed files with 1 additions and 3 deletions
|
|
@ -1,8 +1,7 @@
|
|||
|
||||
# Test case for the os.poll() function
|
||||
|
||||
import sys, os, select, random
|
||||
from test.test_support import verbose, TestSkipped, TESTFN
|
||||
from test_support import verbose, TestSkipped, TESTFN
|
||||
|
||||
try:
|
||||
select.poll
|
||||
|
|
@ -168,4 +167,3 @@ def test_poll2():
|
|||
|
||||
test_poll1()
|
||||
test_poll2()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue