about summary refs log tree commit diff
diff options
context:
space:
mode:
authorklutzy <klutzytheklutzy@gmail.com>2014-08-12 23:25:30 +0900
committerklutzy <klutzytheklutzy@gmail.com>2014-08-18 13:45:08 +0900
commit480674694e364e94e6ef35520113a45f54b2fe6f (patch)
tree379c701552a57faa9369a9a8ae86c9ecb195c2a3
parentd7916f8d4416e739aec3226adb0df1077e15a80a (diff)
downloadrust-480674694e364e94e6ef35520113a45f54b2fe6f.tar.gz
rust-480674694e364e94e6ef35520113a45f54b2fe6f.zip
Remove workaround of #13793/#10872
LLVM assertion error has been fixed recently:
http://llvm.org/bugs/show_bug.cgi?id=18993

Fixes #13793
-rw-r--r--src/test/run-make/no-intermediate-extras/foo.rs5
-rw-r--r--src/test/run-pass/issue-14393.rs2
-rw-r--r--src/test/run-pass/test-runner-hides-main.rs1
3 files changed, 0 insertions, 8 deletions
diff --git a/src/test/run-make/no-intermediate-extras/foo.rs b/src/test/run-make/no-intermediate-extras/foo.rs
index 60a7f067476..e6c76025738 100644
--- a/src/test/run-make/no-intermediate-extras/foo.rs
+++ b/src/test/run-make/no-intermediate-extras/foo.rs
@@ -7,8 +7,3 @@
 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
-
-// FIXME #13793
-#[test]
-fn test_dummy() {
-}
diff --git a/src/test/run-pass/issue-14393.rs b/src/test/run-pass/issue-14393.rs
index 99af544e786..e97021b4869 100644
--- a/src/test/run-pass/issue-14393.rs
+++ b/src/test/run-pass/issue-14393.rs
@@ -8,8 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-windows: FIXME #13793
-
 fn main() {
     match ("", 1u) {
         (_, 42u) => (),
diff --git a/src/test/run-pass/test-runner-hides-main.rs b/src/test/run-pass/test-runner-hides-main.rs
index 64b914a7438..9b658ee1dae 100644
--- a/src/test/run-pass/test-runner-hides-main.rs
+++ b/src/test/run-pass/test-runner-hides-main.rs
@@ -9,7 +9,6 @@
 // except according to those terms.
 
 // compile-flags:--test
-// ignore-windows #10872
 // ignore-pretty: does not work well with `--test`
 
 // Building as a test runner means that a synthetic main will be run,