Skip to content

Commit 75ce03d

Browse files
committed
Use new mod syntax in check-fast driver
1 parent 7aee9f7 commit 75ce03d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/etc/combine-tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ def scrub(b):
4343
for t in stage2_tests:
4444
p = os.path.join(run_pass, t)
4545
p = p.replace("\\", "\\\\")
46-
c.write("mod t_%d = \"%s\";\n" % (i, p))
46+
c.write("#[path = \"%s\"]" % p);
47+
c.write("mod t_%d;\n" % i)
4748
i += 1
4849
c.close()
4950

0 commit comments

Comments
 (0)