Skip to content

Commit f48a8f5

Browse files
Unignore tests which work fine now.
1 parent 128aa26 commit f48a8f5

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

src/test/compile-fail/const-eval-overflow-4.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-test this should fail to compile (#23833)
12-
1311
// Evaluation of constants in array-elem count goes through different
1412
// compiler control-flow paths.
1513
//
@@ -23,7 +21,8 @@ use std::{u8, u16, u32, u64, usize};
2321

2422
const A_I8_T
2523
: [u32; (i8::MAX as i8 + 1i8) as usize]
26-
//~^ ERROR error evaluating count: attempt to add with overflow
24+
//~^ ERROR constant evaluation error
25+
//~^^ NOTE attempt to add with overflow
2726
= [0; (i8::MAX as usize) + 1];
2827

2928
fn main() {

src/test/compile-fail/directory_ownership/macro_expanded_mod_helper/foo/bar.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-test
11+
// ignore-test not a test, auxillary

src/test/compile-fail/directory_ownership/macro_expanded_mod_helper/foo/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-test
11+
// ignore-test not a test, auxillary
1212

1313
mod_decl!(bar);

src/test/run-fail/call-fn-never-arg.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// Test that we can use a ! for an argument of type !
1212

13-
// ignore-test FIXME(durka) can't be done with the current liveness code
1413
// error-pattern:wowzers!
1514

1615
#![feature(never_type)]

src/test/run-pass-fulldeps/proc-macro/auxiliary/derive-reexport.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-test
11+
// ignore-test not a test, auxillary
1212

1313
#![feature(macro_reexport)]
1414

0 commit comments

Comments
 (0)