summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_frozen.py
blob: 678b9a8d98fef170e219dfec3388ced7ccaf3a40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Test the frozen module defined in frozen.c.
# Currently test_frozen fails:
#   Implementing pep3102(keyword only argument) needs changes in
#   code object, which needs modification to marshal.
#   However, to regenerate hard-coded marshal data in frozen.c,
#   we need to run Tools/freeze/freeze.py, which currently doesn't work
#   because Lib/modulefinder.py cannot handle relative module import
#   This test will keep failing until Lib/modulefinder.py is fixed

from test.test_support import TestFailed
import sys, os

try:
    import __hello__
except ImportError as x:
    raise TestFailed, "import __hello__ failed:" + str(x)

try:
    import __phello__
except ImportError as x:
    raise TestFailed, "import __phello__ failed:" + str(x)

try:
    import __phello__.spam
except ImportError as 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"