Skip to content

Commit 2574009

Browse files
committed
Auto merge of #23209 - richo:normalize-test-names, r=alexcrichton
Motivated by the test output not lining up when it could, I normalized all of the issue-* tests. While doing it, I found some lexer tests that could be unignored and fixed an int -> isize.
2 parents 14ce607 + 58a288d commit 2574009

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

src/test/run-pass/issue-4759-1.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10-
//
11-
// ignore-lexer-test FIXME #15877
1210

1311
trait U { fn f(self); }
14-
impl U for int { fn f(self) {} }
12+
impl U for isize { fn f(self) {} }
1513
pub fn main() { 4.f(); }

src/test/run-pass/unsized.rs

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10-
//
11-
// ignore-lexer-test FIXME #15879
1210

1311
// Test syntax checks for `?Sized` syntax.
1412

src/test/run-pass/unsized2.rs

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10-
//
11-
// ignore-lexer-test FIXME #15879
1210

1311
#![allow(unknown_features)]
1412
#![feature(box_syntax)]

0 commit comments

Comments
 (0)