-
Notifications
You must be signed in to change notification settings - Fork 7
/
run_tests.py
executable file
·117 lines (103 loc) · 4.04 KB
/
run_tests.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/usr/bin/env python
import sys
import os
ROOT_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__)))
sys.path.append(os.path.join(ROOT_DIR, "src", "libasr"))
from compiler_tester.tester import color, fg, log, run_test, style, tester_main
def single_test(test, verbose, no_llvm, skip_run_with_dbg, skip_cpptranslate, update_reference,
verify_hash, no_color, specific_backends=None, excluded_backends=None):
filename = test["filename"]
def is_included(backend):
return test.get(backend, False) \
and (specific_backends is None or backend in specific_backends) \
and (excluded_backends is None or backend not in excluded_backends)
show_verbose = "" if not verbose else "-v"
ast = is_included("ast")
asr = is_included("asr")
asr_json = is_included("asr_json")
llvm = is_included("llvm")
llvm_dbg = is_included("llvm_dbg")
cpp = is_included("cpp")
c = is_included("c")
fortran = is_included("fortran")
is_cumulative = is_included("cumulative")
wat = is_included("wat")
disable_main = is_included("disable_main")
pass_ = test.get("pass", None)
optimization_passes = ["flip_sign", "div_to_mul", "fma", "sign_from_value",
"inline_function_calls", "loop_unroll",
"dead_code_removal", "loop_vectorise", "print_list_tuple",
"class_constructor"]
extra_args = ""
if pass_ and (pass_ not in ["do_loops", "global_stmts"] and
pass_ not in optimization_passes):
raise Exception(f"Unknown pass: {pass_}")
if no_color:
log.debug(f" START TEST: {filename}")
else:
log.debug(f"{color(style.bold)} START TEST: {color(style.reset)} {filename}")
if ast:
run_test(
filename,
"ast",
"lc --show-ast {infile} -o {outfile}",
filename,
update_reference, extra_args)
if asr:
run_test(
filename,
"asr",
"lc --show-asr --no-color {infile} -o {outfile}",
filename,
update_reference, extra_args)
if asr_json:
run_test(
filename,
"asr_json",
"lc --show-asr --json --no-color {infile} -o {outfile}",
filename,
update_reference, extra_args)
if pass_ is not None:
cmd = "lc "
if is_cumulative:
cmd += "--cumulative "
cmd += "--pass=" + pass_ + \
" --show-asr --no-color {infile} -o {outfile}"
run_test(filename, "pass_{}".format(pass_), cmd,
filename, update_reference, extra_args)
if no_llvm:
log.info(f"{filename} * llvm SKIPPED as requested")
else:
if llvm:
run_test(
filename,
"llvm",
"lc --no-color --show-llvm {infile} -o {outfile}",
filename,
update_reference, extra_args)
if llvm_dbg:
run_test(
filename,
"llvm_dbg",
"lc --no-color --show-llvm -g --debug-with-line-column "
"{infile} -o {outfile}",
filename,
update_reference, extra_args)
if cpp:
run_test(filename, "cpp", "lc --no-color --show-cpp {infile}",
filename, update_reference, extra_args)
if c:
if disable_main:
run_test(filename, "c", "lc --no-color --disable-main --show-c {infile}",
filename, update_reference, extra_args)
else:
run_test(filename, "c", "lc --no-color --show-c {infile}",
filename, update_reference, extra_args)
if wat:
run_test(filename, "wat", "lc --no-color --show-wat {infile}",
filename, update_reference, extra_args)
if fortran:
run_test(filename, "fortran", "lc --no-color --show-fortran {infile}",
filename, update_reference, extra_args)
if __name__ == "__main__":
tester_main("LC", single_test, True)