Skip to content

Commit 70cc1d3

Browse files
authored
Rollup merge of rust-lang#39530 - TimNN:more-gdb, r=alexcrichton
ignore more gdb versions with buggy rust support This extends the versions of gdb which were ignored in rust-lang#39039. While just ignoring gdb versions up to 7.12.1 would have been sufficient for now, I believe (after consulting https://sourceware.org/gdb/wiki/Internals%20Versions) that ignoring versions up to 7.12.9 will prevent the tests failing again for 7.12.2, etc. while still running all tests for the development versions of gdb (which will be >= 7.12.10 as far as I can tell). This should fix rust-lang#39522. cc @Manishearth, @michaelwoerister, rust-lang#38948
2 parents 3e7ee35 + 112a5a0 commit 70cc1d3

10 files changed

+10
-10
lines changed

src/test/debuginfo/borrowed-enum.rs

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

1111
// ignore-tidy-linelength
1212
// min-lldb-version: 310
13-
// ignore-gdb-version: 7.11.90 - 7.12
13+
// ignore-gdb-version: 7.11.90 - 7.12.9
1414

1515
// compile-flags:-g
1616

src/test/debuginfo/generic-struct-style-enum.rs

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

1111
// ignore-tidy-linelength
1212
// min-lldb-version: 310
13-
// ignore-gdb-version: 7.11.90 - 7.12
13+
// ignore-gdb-version: 7.11.90 - 7.12.9
1414

1515
// compile-flags:-g
1616

src/test/debuginfo/generic-tuple-style-enum.rs

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

1111
// ignore-tidy-linelength
1212
// min-lldb-version: 310
13-
// ignore-gdb-version: 7.11.90 - 7.12
13+
// ignore-gdb-version: 7.11.90 - 7.12.9
1414

1515
// compile-flags:-g
1616

src/test/debuginfo/packed-struct.rs

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

1111
// ignore-tidy-linelength
1212
// min-lldb-version: 310
13-
// ignore-gdb-version: 7.11.90 - 7.12
13+
// ignore-gdb-version: 7.11.90 - 7.12.9
1414

1515
// compile-flags:-g
1616

src/test/debuginfo/recursive-struct.rs

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

1111
// ignore-tidy-linelength
1212
// ignore-lldb
13-
// ignore-gdb-version: 7.11.90 - 7.12
13+
// ignore-gdb-version: 7.11.90 - 7.12.9
1414

1515
// compile-flags:-g
1616

src/test/debuginfo/struct-in-enum.rs

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

1111
// ignore-tidy-linelength
1212
// min-lldb-version: 310
13-
// ignore-gdb-version: 7.11.90 - 7.12
13+
// ignore-gdb-version: 7.11.90 - 7.12.9
1414

1515
// compile-flags:-g
1616

src/test/debuginfo/struct-style-enum.rs

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

1111
// ignore-tidy-linelength
1212
// min-lldb-version: 310
13-
// ignore-gdb-version: 7.11.90 - 7.12
13+
// ignore-gdb-version: 7.11.90 - 7.12.9
1414

1515
// compile-flags:-g
1616

src/test/debuginfo/tuple-style-enum.rs

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

1111
// ignore-tidy-linelength
1212
// min-lldb-version: 310
13-
// ignore-gdb-version: 7.11.90 - 7.12
13+
// ignore-gdb-version: 7.11.90 - 7.12.9
1414

1515
// compile-flags:-g
1616

src/test/debuginfo/union-smoke.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// except according to those terms.
1010

1111
// min-lldb-version: 310
12-
// ignore-gdb-version: 7.11.90 - 7.12
12+
// ignore-gdb-version: 7.11.90 - 7.12.9
1313

1414
// compile-flags:-g
1515

src/test/debuginfo/unique-enum.rs

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

1111
// ignore-tidy-linelength
1212
// min-lldb-version: 310
13-
// ignore-gdb-version: 7.11.90 - 7.12
13+
// ignore-gdb-version: 7.11.90 - 7.12.9
1414

1515
// compile-flags:-g
1616

0 commit comments

Comments
 (0)