about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-03-09 16:30:20 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-03-09 17:59:19 +0530
commit43984618eb5c56d69ef1659fd506e26a0fd2d9bb (patch)
treed3423520e6b0f62f752a12f0c68f6cf2d6850e2b
parentead9ab84b80ba3b172d529b1d2a2917bb05b4820 (diff)
parent58a288d323a00647c12a78f88427ac892b87c5b5 (diff)
downloadrust-43984618eb5c56d69ef1659fd506e26a0fd2d9bb.tar.gz
rust-43984618eb5c56d69ef1659fd506e26a0fd2d9bb.zip
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.
-rw-r--r--src/test/run-pass/issue-4759-1.rs4
-rw-r--r--src/test/run-pass/unsized.rs2
-rw-r--r--src/test/run-pass/unsized2.rs2
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)]