2001-10-18 15:49:37 -03:00
|
|
|
# Test the frozen module defined in frozen.c.
|
|
|
|
|
2002-07-30 20:27:12 -03:00
|
|
|
from test.test_support import TestFailed
|
2001-10-18 15:49:37 -03:00
|
|
|
import sys, os
|
|
|
|
|
|
|
|
try:
|
|
|
|
import __hello__
|
|
|
|
except ImportError, x:
|
2002-11-01 07:33:00 -04:00
|
|
|
raise TestFailed, "import __hello__ failed:" + str(x)
|
2001-10-18 15:49:37 -03:00
|
|
|
|
|
|
|
try:
|
|
|
|
import __phello__
|
|
|
|
except ImportError, x:
|
2002-11-01 07:33:00 -04:00
|
|
|
raise TestFailed, "import __phello__ failed:" + str(x)
|
2001-10-18 15:49:37 -03:00
|
|
|
|
|
|
|
try:
|
|
|
|
import __phello__.spam
|
|
|
|
except ImportError, x:
|
2002-11-01 07:33:00 -04:00
|
|
|
raise TestFailed, "import __phello__.spam failed:" + str(x)
|
2001-10-18 15:49:37 -03:00
|
|
|
|
2003-01-08 12:30:54 -04:00
|
|
|
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"
|