diff options
author | cinap_lenrek <cinap_lenrek@localhost> | 2011-05-04 05:41:33 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@localhost> | 2011-05-04 05:41:33 +0000 |
commit | b8436b026a90291ba26afa4f7a2700720b03339f (patch) | |
tree | 3098aede87640c80567ecb31022e0404a8b5ec75 /sys/lib/python/test/test_frozen.py | |
parent | 6c1b42188259a6f1636cd15a9570b18af03e2dbb (diff) |
remove python test cases
Diffstat (limited to 'sys/lib/python/test/test_frozen.py')
-rw-r--r-- | sys/lib/python/test/test_frozen.py | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/sys/lib/python/test/test_frozen.py b/sys/lib/python/test/test_frozen.py deleted file mode 100644 index 8b121d38d..000000000 --- a/sys/lib/python/test/test_frozen.py +++ /dev/null @@ -1,27 +0,0 @@ -# Test the frozen module defined in frozen.c. - -from test.test_support import TestFailed -import sys, os - -try: - import __hello__ -except ImportError, x: - raise TestFailed, "import __hello__ failed:" + str(x) - -try: - import __phello__ -except ImportError, x: - raise TestFailed, "import __phello__ failed:" + str(x) - -try: - import __phello__.spam -except ImportError, x: - raise TestFailed, "import __phello__.spam failed:" + str(x) - -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" |