summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_frozen.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-10-15 00:25:56 (GMT)
committerGuido van Rossum <guido@python.org>2007-10-15 00:25:56 (GMT)
commit3b7210d336c23737e02631e391d6adb114518274 (patch)
treef4fc68e167c23f50bae741a2f355803314129fba /Lib/test/test_frozen.py
parent7c4c6c5d8aa6eb7ed4e76017f9094783631e96dc (diff)
downloadcpython-3b7210d336c23737e02631e391d6adb114518274.zip
cpython-3b7210d336c23737e02631e391d6adb114518274.tar.gz
cpython-3b7210d336c23737e02631e391d6adb114518274.tar.bz2
Make it possible to run this test stand-alone.
Diffstat (limited to 'Lib/test/test_frozen.py')
-rw-r--r--Lib/test/test_frozen.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_frozen.py b/Lib/test/test_frozen.py
index e47bb64..3c9fab3 100644
--- a/Lib/test/test_frozen.py
+++ b/Lib/test/test_frozen.py
@@ -38,3 +38,6 @@ class FrozenTests(unittest.TestCase):
def test_main():
run_unittest(FrozenTests)
+
+if __name__ == "__main__":
+ test_main()