Skip to content

Commit 758807c

Browse files
committed
test/debug-info: Add/remove ignore-win32 flags
Fixes #10474
1 parent baf2861 commit 758807c

13 files changed

+14
-7
lines changed

src/test/debug-info/basic-types-globals-metadata.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// ignore-win32: FIXME #13256
1112
// ignore-android: FIXME(#10381)
1213

1314
// compile-flags:-g
@@ -44,7 +45,9 @@
4445
// check:type = f64
4546
// debugger:continue
4647

47-
#[allow(unused_variable)];
48+
#![allow(unused_variable)]
49+
#![allow(dead_code)]
50+
4851

4952
static B: bool = false;
5053
static I: int = -1;

src/test/debug-info/basic-types-globals.rs

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
// about UTF-32 character encoding and will print a rust char as only
1515
// its numerical value.
1616

17+
// ignore-win32: FIXME #13256
1718
// ignore-android: FIXME(#10381)
1819

1920
// compile-flags:-g

src/test/debug-info/basic-types-mut-globals.rs

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
// about UTF-32 character encoding and will print a rust char as only
1515
// its numerical value.
1616

17+
// ignore-win32: FIXME #13256
1718
// ignore-android: FIXME(#10381)
1819

1920
// compile-flags:-g

src/test/debug-info/c-style-enum.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// ignore-win32: FIXME #13256
1112
// ignore-android: FIXME(#10381)
1213

1314
// compile-flags:-g
@@ -70,7 +71,8 @@
7071
// debugger:print 'c-style-enum::MANUAL_THREE'
7172
// check:$18 = OneMillion
7273

73-
#[allow(unused_variable)];
74+
#![allow(unused_variable)]
75+
#![allow(dead_code)]
7476

7577
enum AutoDiscriminant {
7678
One,

src/test/debug-info/lexical-scope-in-for-loop.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-win32
1211
// ignore-android: FIXME(#10381)
1312

1413
// compile-flags:-g

src/test/debug-info/lexical-scope-in-if.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-win32
1211
// ignore-android: FIXME(#10381)
1312

1413
// compile-flags:-g

src/test/debug-info/lexical-scope-in-match.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-win32
1211
// ignore-android: FIXME(#10381)
1312

1413
// compile-flags:-g

src/test/debug-info/lexical-scopes-in-block-expression.rs

+1-1
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-win32
11+
// ignore-win32: FIXME #13256
1212
// ignore-android: FIXME(#10381)
1313

1414
// compile-flags:-g

src/test/debug-info/simple-struct.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// ignore-win32: FIXME #13256
1112
// ignore-android: FIXME(#10381)
1213

1314
// compile-flags:-g

src/test/debug-info/simple-tuple.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// ignore-win32: FIXME #13256
1112
// ignore-android: FIXME(#10381)
1213

1314
// compile-flags:-g

src/test/debug-info/var-captured-in-nested-closure.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

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

1413
// compile-flags:-g

src/test/debug-info/vec-slices.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// ignore-win32: FIXME #13256
1112
// ignore-android: FIXME(#10381)
1213

1314
// compile-flags:-g

src/test/debug-info/vec.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// ignore-win32: FIXME #13256
1112
// ignore-android: FIXME(#10381)
1213

1314
// compile-flags:-g

0 commit comments

Comments
 (0)