blob: 36f92009a4f32614c23a94893e4f88fa77dad120 [file] [log] [blame]
Tim Petersfe8a5662006-03-01 06:28:58 +00001import sys
2
3# This is a test module for Python. It looks in the standard
4# places for various *.py files. If these are moved, you must
5# change this module too.
6
7try:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00008 import os
Tim Petersfe8a5662006-03-01 06:28:58 +00009except:
Collin Winterb13c4932007-08-30 18:50:25 +000010 print("""Could not import the standard "os" module.
11 Please check your PYTHONPATH environment variable.""")
Tim Petersfe8a5662006-03-01 06:28:58 +000012 sys.exit(1)
13
14try:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000015 import symbol
Tim Petersfe8a5662006-03-01 06:28:58 +000016except:
Collin Winterb13c4932007-08-30 18:50:25 +000017 print("""Could not import the standard "symbol" module. If this is
18 a PC, you should add the dos_8x3 directory to your PYTHONPATH.""")
Tim Petersfe8a5662006-03-01 06:28:58 +000019 sys.exit(1)
20
21import os
22
23for dir in sys.path:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000024 file = os.path.join(dir, "os.py")
Tim Petersfe8a5662006-03-01 06:28:58 +000025 if os.path.isfile(file):
26 test = os.path.join(dir, "test")
27 if os.path.isdir(test):
28 # Add the "test" directory to PYTHONPATH.
29 sys.path = sys.path + [test]
30
31import regrtest # Standard Python tester.
32regrtest.main()