1 | #!python |
---|
2 | from __future__ import print_function |
---|
3 | |
---|
4 | from os import listdir, environ |
---|
5 | from os.path import isfile, join, splitext |
---|
6 | from subprocess import Popen, PIPE, STDOUT |
---|
7 | |
---|
8 | import argparse |
---|
9 | import os |
---|
10 | import re |
---|
11 | import sys |
---|
12 | |
---|
13 | ################################################################################ |
---|
14 | # help functions |
---|
15 | ################################################################################ |
---|
16 | def listTests(): |
---|
17 | list = [splitext(f)[0] for f in listdir('./.expect') |
---|
18 | if not f.startswith('.') and f.endswith('.txt') |
---|
19 | ] |
---|
20 | |
---|
21 | return list |
---|
22 | |
---|
23 | def sh(cmd, dry_run): |
---|
24 | if dry_run : |
---|
25 | print("cmd: %s" % cmd) |
---|
26 | return 0 |
---|
27 | else : |
---|
28 | proc = Popen(cmd, stderr=STDOUT, shell=True) |
---|
29 | proc.communicate() |
---|
30 | return proc.returncode |
---|
31 | |
---|
32 | def file_replace(fname, pat, s_after): |
---|
33 | # first, see if the pattern is even in the file. |
---|
34 | with open(fname) as f: |
---|
35 | if not any(re.search(pat, line) for line in f): |
---|
36 | return # pattern does not occur in file so we are done. |
---|
37 | |
---|
38 | # pattern is in the file, so perform replace operation. |
---|
39 | with open(fname) as f: |
---|
40 | out_fname = fname + ".tmp" |
---|
41 | out = open(out_fname, "w") |
---|
42 | for line in f: |
---|
43 | out.write(re.sub(pat, s_after, line)) |
---|
44 | out.close() |
---|
45 | os.rename(out_fname, fname) |
---|
46 | |
---|
47 | def fix_MakeLevel(file) : |
---|
48 | if environ.get('MAKELEVEL') : |
---|
49 | file_replace(file, "make\[%i\]" % int(environ.get('MAKELEVEL')), 'make' ) |
---|
50 | |
---|
51 | |
---|
52 | ################################################################################ |
---|
53 | # running test functions |
---|
54 | ################################################################################ |
---|
55 | def run_test_instance(test, generate, dry_run): |
---|
56 | |
---|
57 | out_file = (".out/%s.log" % test) if not generate else (".expect/%s.txt" % test) |
---|
58 | |
---|
59 | sh("rm -f %s" % out_file, dry_run) |
---|
60 | sh("rm -f %s > /dev/null 2>&1" % test, dry_run) |
---|
61 | |
---|
62 | # build, skipping to next test on error |
---|
63 | make_ret = sh("make -j 8 %s 2> %s 1> /dev/null" % (test, out_file), dry_run) |
---|
64 | |
---|
65 | if make_ret == 0 : |
---|
66 | # fetch optional input |
---|
67 | stdinput = "< .in/%s.txt" % test if isfile(".in/%s.txt" % test) else "" |
---|
68 | |
---|
69 | # run test |
---|
70 | sh("./%s %s > %s 2>&1" % (test, stdinput, out_file), dry_run) |
---|
71 | |
---|
72 | retcode = 0 |
---|
73 | |
---|
74 | fix_MakeLevel(out_file) |
---|
75 | |
---|
76 | if not generate : |
---|
77 | # diff the output of the files |
---|
78 | retcode = sh("diff .expect/%s.txt .out/%s.log" % (test, test), dry_run) |
---|
79 | |
---|
80 | # clean the executable |
---|
81 | sh("rm -f %s > /dev/null 2>&1" % test, dry_run) |
---|
82 | |
---|
83 | return retcode |
---|
84 | |
---|
85 | def run_tests(tests, generate, dry_run) : |
---|
86 | sh('make clean > /dev/null 2>&1', dry_run) |
---|
87 | sh('mkdir -p .out .expect', dry_run) |
---|
88 | |
---|
89 | if generate : |
---|
90 | print( "Regenerate tests for: " ) |
---|
91 | |
---|
92 | failed = False; |
---|
93 | for t in tests: |
---|
94 | print("%20s " % t, end="") |
---|
95 | sys.stdout.flush() |
---|
96 | test_failed = run_test_instance(t, generate, dry_run) |
---|
97 | failed = test_failed or failed |
---|
98 | |
---|
99 | if not generate : |
---|
100 | print("FAILED" if test_failed else "PASSED") |
---|
101 | else : |
---|
102 | print( "Done" ) |
---|
103 | |
---|
104 | sh('make clean > /dev/null 2>&1', dry_run) |
---|
105 | |
---|
106 | return 1 if failed else 0 |
---|
107 | |
---|
108 | ################################################################################ |
---|
109 | # main loop |
---|
110 | ################################################################################ |
---|
111 | parser = argparse.ArgumentParser(description='Script which runs cforall tests') |
---|
112 | parser.add_argument('--dry-run', help='Don\'t run the tests, only output the commands', action='store_true') |
---|
113 | parser.add_argument('--list', help='List all test available', action='store_true') |
---|
114 | parser.add_argument('--all', help='Run all test available', action='store_true') |
---|
115 | parser.add_argument('--regenerate-expected', help='Regenerate the .expect by running the specified tets, can be used with --all option', action='store_true') |
---|
116 | parser.add_argument('tests', metavar='test', type=str, nargs='*', help='a list of tests to run') |
---|
117 | |
---|
118 | options = parser.parse_args() |
---|
119 | |
---|
120 | if (len(options.tests) > 0 and options.all and not options.list) \ |
---|
121 | or (len(options.tests) == 0 and not options.all and not options.list) : |
---|
122 | print('ERROR: must have option \'--all\' or non-empty test list', file=sys.stderr) |
---|
123 | parser.print_help() |
---|
124 | sys.exit(1) |
---|
125 | |
---|
126 | allTests = listTests() |
---|
127 | |
---|
128 | if options.all or options.list : |
---|
129 | tests = allTests |
---|
130 | |
---|
131 | else : |
---|
132 | tests = [] |
---|
133 | for test in options.tests: |
---|
134 | if test in allTests : |
---|
135 | tests.append(test) |
---|
136 | else : |
---|
137 | print('ERROR: No expected file for test %s, ignoring it' % test, file=sys.stderr) |
---|
138 | |
---|
139 | if len(tests) == 0 : |
---|
140 | print('ERROR: No valid test to run', file=sys.stderr) |
---|
141 | sys.exit(1) |
---|
142 | |
---|
143 | if options.list : |
---|
144 | print("\n".join(tests)) |
---|
145 | |
---|
146 | else : |
---|
147 | sys.exit( run_tests(tests, options.regenerate_expected, options.dry_run) ) |
---|