Fix problem in combine-tests.py.
This commit is contained in:
parent
eb411d1b8f
commit
0442fd32ee
@ -61,9 +61,9 @@ i = 0
|
||||
for t in stage2_tests:
|
||||
p = os.path.join("test", "run-pass", t)
|
||||
p = p.replace("\\", "\\\\")
|
||||
d.write(" out.write_str(\"run-pass [stage2]: %s\\n\");\n" % p)
|
||||
d.write(" out.write_str(~\"run-pass [stage2]: %s\\n\");\n" % p)
|
||||
if t in take_args:
|
||||
d.write(" t_%d::main(~[\"arg0\"]);\n" % i)
|
||||
d.write(" t_%d::main(~[~\"arg0\"]);\n" % i)
|
||||
else:
|
||||
d.write(" t_%d::main();\n" % i)
|
||||
i += 1
|
||||
|
Loading…
Reference in New Issue
Block a user