mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
n the Mac the frozen import that should fail actually succeeds, and we know it, so skip the test in stead of confusing the end user.
This commit is contained in:
parent
ce92147cc8
commit
2918ae8fe6
1 changed files with 7 additions and 6 deletions
|
@ -18,9 +18,10 @@ try:
|
|||
except ImportError, x:
|
||||
raise TestFailed, "import __phello__.spam failed:" + str(x)
|
||||
|
||||
try:
|
||||
import __phello__.foo
|
||||
except ImportError:
|
||||
pass
|
||||
else:
|
||||
raise TestFailed, "import __phello__.foo should have failed"
|
||||
if sys.platform != "mac": # On the Mac this import does succeed.
|
||||
try:
|
||||
import __phello__.foo
|
||||
except ImportError:
|
||||
pass
|
||||
else:
|
||||
raise TestFailed, "import __phello__.foo should have failed"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue