Fix combine-tests.py for new ivec regime

This commit is contained in:
Brian Anderson
2011-08-24 12:02:19 -07:00
parent a0208e3899
commit b7d74c32b6

View File

@@ -60,7 +60,7 @@ for t in stage2_tests:
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