- Notifications
You must be signed in to change notification settings - Fork 31.7k
/
Copy pathtest_parser.py
executable file
·48 lines (42 loc) · 1.16 KB
/
test_parser.py
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#! /usr/bin/env python
# (Force the script to use the latest build.)
#
# test_parser.py
importparser, traceback
_numFailed=0
deftestChunk(t, fileName):
global_numFailed
print'----', fileName,
try:
st=parser.suite(t)
tup=parser.st2tuple(st)
# this discards the first ST; a huge memory savings when running
# against a large source file like Tkinter.py.
st=None
new=parser.tuple2st(tup)
exceptparser.ParserError, err:
print
print'parser module raised exception on input file', fileName+':'
traceback.print_exc()
_numFailed=_numFailed+1
else:
iftup!=parser.st2tuple(new):
print
print'parser module failed on input file', fileName
_numFailed=_numFailed+1
else:
print'o.k.'
deftestFile(fileName):
t=open(fileName).read()
testChunk(t, fileName)
deftest():
importsys
args=sys.argv[1:]
ifnotargs:
importglob
args=glob.glob("*.py")
args.sort()
map(testFile, args)
sys.exit(_numFailed!=0)
if__name__=='__main__':
test()