Skip to content

Commit

Permalink
test/debug-info: Add/remove ignore-win32 flags
Browse files Browse the repository at this point in the history
  • Loading branch information
klutzy committed Apr 3, 2014
1 parent baf2861 commit 758807c
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 7 deletions.
5 changes: 4 additions & 1 deletion src/test/debug-info/basic-types-globals-metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down Expand Up @@ -44,7 +45,9 @@
// check:type = f64
// debugger:continue

#[allow(unused_variable)];
#![allow(unused_variable)]
#![allow(dead_code)]


static B: bool = false;
static I: int = -1;
Expand Down
1 change: 1 addition & 0 deletions src/test/debug-info/basic-types-globals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
// about UTF-32 character encoding and will print a rust char as only
// its numerical value.

// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
1 change: 1 addition & 0 deletions src/test/debug-info/basic-types-mut-globals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
// about UTF-32 character encoding and will print a rust char as only
// its numerical value.

// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
4 changes: 3 additions & 1 deletion src/test/debug-info/c-style-enum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down Expand Up @@ -70,7 +71,8 @@
// debugger:print 'c-style-enum::MANUAL_THREE'
// check:$18 = OneMillion

#[allow(unused_variable)];
#![allow(unused_variable)]
#![allow(dead_code)]

enum AutoDiscriminant {
One,
Expand Down
1 change: 0 additions & 1 deletion src/test/debug-info/lexical-scope-in-for-loop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
1 change: 0 additions & 1 deletion src/test/debug-info/lexical-scope-in-if.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
1 change: 0 additions & 1 deletion src/test/debug-info/lexical-scope-in-match.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
2 changes: 1 addition & 1 deletion src/test/debug-info/lexical-scopes-in-block-expression.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32
// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
1 change: 1 addition & 0 deletions src/test/debug-info/simple-struct.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
1 change: 1 addition & 0 deletions src/test/debug-info/simple-tuple.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
1 change: 0 additions & 1 deletion src/test/debug-info/var-captured-in-nested-closure.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32: FIXME #10474
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
1 change: 1 addition & 0 deletions src/test/debug-info/vec-slices.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
1 change: 1 addition & 0 deletions src/test/debug-info/vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down

0 comments on commit 758807c

Please sign in to comment.