Skip to content

Commit e127dc6

Browse files
klutzyalexcrichton
authored andcommitted
---
yaml --- r: 110101 b: refs/heads/auto c: 35ed58c h: refs/heads/master i: 110099: aaf1025 v: v3
1 parent c74b467 commit e127dc6

14 files changed

+15
-8
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1313
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1414
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1515
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
16-
refs/heads/auto: 74ae36ccf215d434697da3e00fa12656aa32d781
16+
refs/heads/auto: 35ed58c1e61890c5325b5d1a29846a10fa23a5fd
1717
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1818
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1919
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336

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

Lines changed: 4 additions & 1 deletion
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;

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

Lines changed: 1 addition & 0 deletions
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

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

Lines changed: 1 addition & 0 deletions
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

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

Lines changed: 3 additions & 1 deletion
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,

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

Lines changed: 0 additions & 1 deletion
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

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

Lines changed: 0 additions & 1 deletion
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

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

Lines changed: 0 additions & 1 deletion
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

branches/auto/src/test/debug-info/lexical-scopes-in-block-expression.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-win32
11+
// ignore-win32: FIXME #13256
1212
// ignore-android: FIXME(#10381)
1313

1414
// compile-flags:-g

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

Lines changed: 1 addition & 0 deletions
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

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

Lines changed: 1 addition & 0 deletions
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

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

Lines changed: 0 additions & 1 deletion
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

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

Lines changed: 1 addition & 0 deletions
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

branches/auto/src/test/debug-info/vec.rs

Lines changed: 1 addition & 0 deletions
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)