about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPhilipp Brüschweiler <blei42@gmail.com>2013-06-25 11:27:43 +0200
committerCorey Richardson <corey@octayn.net>2013-06-26 18:08:23 -0400
commit87c1b59e8bf59ca32e725ca72f09ebef98928091 (patch)
tree0b118dc79b66d396d3c0519e9dd1ed2dd9d9102f /src
parent8a4d359ffcfc9b0055580e27b841caf7e88f8f15 (diff)
downloadrust-87c1b59e8bf59ca32e725ca72f09ebef98928091.tar.gz
rust-87c1b59e8bf59ca32e725ca72f09ebef98928091.zip
Fix some warnings in the check-fast tests
Diffstat (limited to 'src')
-rwxr-xr-xsrc/etc/combine-tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/combine-tests.py b/src/etc/combine-tests.py
index 8e9caf189c2..36031d31149 100755
--- a/src/etc/combine-tests.py
+++ b/src/etc/combine-tests.py
@@ -60,7 +60,7 @@ i = 0
 for t in stage2_tests:
     p = os.path.join("test", "run-pass", t)
     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)
     d.write("    t_%d::main();\n" % i)
     i += 1
 d.write("}\n")