Fix problem in combine-tests.py.
This commit is contained in:
@@ -61,9 +61,9 @@ i = 0
|
|||||||
for t in stage2_tests:
|
for t in stage2_tests:
|
||||||
p = os.path.join("test", "run-pass", t)
|
p = os.path.join("test", "run-pass", t)
|
||||||
p = p.replace("\\", "\\\\")
|
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:
|
if t in take_args:
|
||||||
d.write(" t_%d::main(~[\"arg0\"]);\n" % i)
|
d.write(" t_%d::main(~[~\"arg0\"]);\n" % i)
|
||||||
else:
|
else:
|
||||||
d.write(" t_%d::main();\n" % i)
|
d.write(" t_%d::main();\n" % i)
|
||||||
i += 1
|
i += 1
|
||||||
|
|||||||
Reference in New Issue
Block a user