]> git.lizzy.rs Git - rust.git/commitdiff
Unignore tests which work fine now.
authorMark Simulacrum <mark.simulacrum@gmail.com>
Sat, 29 Apr 2017 04:30:03 +0000 (22:30 -0600)
committerMark Simulacrum <mark.simulacrum@gmail.com>
Sat, 29 Apr 2017 04:31:10 +0000 (22:31 -0600)
src/test/compile-fail/const-eval-overflow-4.rs
src/test/compile-fail/directory_ownership/macro_expanded_mod_helper/foo/bar.rs
src/test/compile-fail/directory_ownership/macro_expanded_mod_helper/foo/mod.rs
src/test/run-fail/call-fn-never-arg.rs
src/test/run-pass-fulldeps/proc-macro/auxiliary/derive-reexport.rs

index 67525fc16261b252f7aa679ba3c1f2ce76f06221..06b7d0206b12828a14b13a11e8344e64ee9f959f 100644 (file)
@@ -8,8 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-test this should fail to compile (#23833)
-
 // Evaluation of constants in array-elem count goes through different
 // compiler control-flow paths.
 //
@@ -23,7 +21,8 @@
 
 const A_I8_T
     : [u32; (i8::MAX as i8 + 1i8) as usize]
-    //~^ ERROR error evaluating count: attempt to add with overflow
+    //~^ ERROR constant evaluation error
+    //~^^ NOTE attempt to add with overflow
     = [0; (i8::MAX as usize) + 1];
 
 fn main() {
index 3ec34362da559d6c99ec9cfe801fbc1837ad2630..9177dcba0d7a3268aae644c8fa02c83113717cd8 100644 (file)
@@ -8,4 +8,4 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-test
+// ignore-test not a test, auxillary
index 25fcf11ce175b3637aac9654d86f89721a20e84d..e29c985b983a2d5616d165a713da64ef735c5de5 100644 (file)
@@ -8,6 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-test
+// ignore-test not a test, auxillary
 
 mod_decl!(bar);
index b1aa76cd9bfe50aa92797c3906b442aafc588956..95101e70db95192aae510e6593b4a6175cbfa902 100644 (file)
@@ -10,7 +10,6 @@
 
 // Test that we can use a ! for an argument of type !
 
-// ignore-test FIXME(durka) can't be done with the current liveness code
 // error-pattern:wowzers!
 
 #![feature(never_type)]
index fae2d27ab6b75d821974a741df65f5b7c007ccd1..24865ea2709824c53a4ca7c1731b4adea55d905a 100644 (file)
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-test
+// ignore-test not a test, auxillary
 
 #![feature(macro_reexport)]