diff options
Diffstat (limited to 'src/etc/combine-tests.py')
| -rwxr-xr-x | src/etc/combine-tests.py | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/src/etc/combine-tests.py b/src/etc/combine-tests.py index d6efcbc4642..8e1a916e2f1 100755 --- a/src/etc/combine-tests.py +++ b/src/etc/combine-tests.py @@ -37,14 +37,12 @@ stage2_tests.sort() c = open("tmp/run_pass_stage2.rc", "w") i = 0 c.write("// AUTO-GENERATED FILE: DO NOT EDIT\n") -c.write("#[legacy_exports];\n") 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("#[path = \"%s\"]" % p); - c.write("#[legacy_exports]"); - c.write("mod t_%d;\n" % i) + c.write("pub mod t_%d;\n" % i) i += 1 c.close() | 
