diff options
| author | bors <bors@rust-lang.org> | 2015-03-09 13:36:13 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-03-09 13:36:13 +0000 |
| commit | 2574009af0ff70dc233beab246db8f2d715be2cb (patch) | |
| tree | 1a0cc820d260751bc79559b24b1e9df7a319b4e7 /src | |
| parent | 14ce607d9b96ab3c8d5564bcddd553d6f8e175c7 (diff) | |
| parent | 58a288d323a00647c12a78f88427ac892b87c5b5 (diff) | |
| download | rust-2574009af0ff70dc233beab246db8f2d715be2cb.tar.gz rust-2574009af0ff70dc233beab246db8f2d715be2cb.zip | |
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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/run-pass/issue-4759-1.rs | 4 | ||||
| -rw-r--r-- | src/test/run-pass/unsized.rs | 2 | ||||
| -rw-r--r-- | src/test/run-pass/unsized2.rs | 2 |
3 files changed, 1 insertions, 7 deletions
diff --git a/src/test/run-pass/issue-4759-1.rs b/src/test/run-pass/issue-4759-1.rs index ce2f488b90c..a565460c42e 100644 --- a/src/test/run-pass/issue-4759-1.rs +++ b/src/test/run-pass/issue-4759-1.rs @@ -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(); } diff --git a/src/test/run-pass/unsized.rs b/src/test/run-pass/unsized.rs index ae175d27b0a..1a479d05d50 100644 --- a/src/test/run-pass/unsized.rs +++ b/src/test/run-pass/unsized.rs @@ -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. diff --git a/src/test/run-pass/unsized2.rs b/src/test/run-pass/unsized2.rs index 10b2f2fb709..e0d37ff40de 100644 --- a/src/test/run-pass/unsized2.rs +++ b/src/test/run-pass/unsized2.rs @@ -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)] |
