Skip to content

Commit c956f76

Browse files
committed
replaced ignore-pretty with no-pretty-expanded
Per @acrichto's suggestion, use the more narrowly focused exclusion.
1 parent 4b833e2 commit c956f76

13 files changed

+13
-13
lines changed

src/test/bench/msgsend-ring-mutex-arcs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
// This also serves as a pipes test, because Arcs are implemented with pipes.
1717

18-
// ignore-pretty FIXME #15189
18+
// no-pretty-expanded FIXME #15189
1919

2020
extern crate time;
2121

src/test/bench/msgsend-ring-rw-arcs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
// This also serves as a pipes test, because Arcs are implemented with pipes.
1717

18-
// ignore-pretty FIXME #15189
18+
// no-pretty-expanded FIXME #15189
1919

2020
extern crate time;
2121

src/test/bench/shootout-meteor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
3939
// OF THE POSSIBILITY OF SUCH DAMAGE.
4040

41-
// ignore-pretty FIXME #15189
41+
// no-pretty-expanded FIXME #15189
4242

4343
#![feature(phase)]
4444
#[phase(plugin)] extern crate green;

src/test/bench/shootout-spectralnorm.rs

Lines changed: 1 addition & 1 deletion
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-pretty FIXME #15189
11+
// no-pretty-expanded FIXME #15189
1212

1313
#![feature(phase)]
1414
#![allow(non_snake_case_functions)]

src/test/run-pass/backtrace.rs

Lines changed: 1 addition & 1 deletion
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-pretty FIXME #15189
11+
// no-pretty-expanded FIXME #15189
1212
// ignore-win32 FIXME #13259
1313
extern crate native;
1414

src/test/run-pass/deriving-cmp-generic-enum.rs

Lines changed: 1 addition & 1 deletion
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-pretty FIXME #15189
11+
// no-pretty-expanded FIXME #15189
1212

1313
#[deriving(PartialEq, Eq, PartialOrd, Ord)]
1414
enum E<T> {

src/test/run-pass/deriving-cmp-generic-struct-enum.rs

Lines changed: 1 addition & 1 deletion
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-pretty FIXME #15189
11+
// no-pretty-expanded FIXME #15189
1212

1313
#![feature(struct_variant)]
1414

src/test/run-pass/deriving-cmp-generic-struct.rs

Lines changed: 1 addition & 1 deletion
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-pretty FIXME #15189
11+
// no-pretty-expanded FIXME #15189
1212

1313
#[deriving(PartialEq, Eq, PartialOrd, Ord)]
1414
struct S<T> {

src/test/run-pass/deriving-cmp-generic-tuple-struct.rs

Lines changed: 1 addition & 1 deletion
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-pretty FIXME #15189
11+
// no-pretty-expanded FIXME #15189
1212

1313
#[deriving(PartialEq, Eq, PartialOrd, Ord)]
1414
struct TS<T>(T,T);

src/test/run-pass/linear-for-loop.rs

Lines changed: 1 addition & 1 deletion
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-pretty FIXME #15189
11+
// no-pretty-expanded FIXME #15189
1212

1313
extern crate debug;
1414

src/test/run-pass/task-comm-3.rs

Lines changed: 1 addition & 1 deletion
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-pretty FIXME #15189
11+
// no-pretty-expanded FIXME #15189
1212

1313
extern crate debug;
1414

src/test/run-pass/unfold-cross-crate.rs

Lines changed: 1 addition & 1 deletion
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-pretty FIXME #15189
11+
// no-pretty-expanded FIXME #15189
1212

1313
use std::iter::Unfold;
1414

src/test/run-pass/utf8.rs

Lines changed: 1 addition & 1 deletion
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-pretty FIXME #15189
11+
// no-pretty-expanded FIXME #15189
1212

1313
pub fn main() {
1414
let yen: char = '¥'; // 0xa5

0 commit comments

Comments
 (0)