Rollup 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.
This commit is contained in:
Manish Goregaokar 2015-03-09 16:30:20 +05:30
commit 43984618eb
3 changed files with 1 additions and 7 deletions

View File

@ -7,9 +7,7 @@
// <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.
//
// ignore-lexer-test FIXME #15877
trait U { fn f(self); }
impl U for int { fn f(self) {} }
impl U for isize { fn f(self) {} }
pub fn main() { 4.f(); }

View File

@ -7,8 +7,6 @@
// <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.
//
// ignore-lexer-test FIXME #15879
// Test syntax checks for `?Sized` syntax.

View File

@ -7,8 +7,6 @@
// <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.
//
// ignore-lexer-test FIXME #15879
#![allow(unknown_features)]
#![feature(box_syntax)]