From 75ce03dd7794c125cf103ab224083a26a4da531b Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 24 Nov 2011 15:45:40 -0800 Subject: [PATCH] Use new mod syntax in check-fast driver --- src/etc/combine-tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/etc/combine-tests.py b/src/etc/combine-tests.py index 09b80ba448ff..4e0cc43c7553 100755 --- a/src/etc/combine-tests.py +++ b/src/etc/combine-tests.py @@ -43,7 +43,8 @@ c.write("#[link(name=\"run_pass_stage2\", vers=\"0.1\")];\n") for t in stage2_tests: p = os.path.join(run_pass, t) p = p.replace("\\", "\\\\") - c.write("mod t_%d = \"%s\";\n" % (i, p)) + c.write("#[path = \"%s\"]" % p); + c.write("mod t_%d;\n" % i) i += 1 c.close()