Skip to content

Commit

Permalink
Rollup merge of rust-lang#39530 - TimNN:more-gdb, r=alexcrichton
Browse files Browse the repository at this point in the history
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
  • Loading branch information
frewsxcv authored Feb 5, 2017
2 parents 4c97ad8 + 112a5a0 commit bee32f0
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/test/debuginfo/borrowed-enum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-tidy-linelength
// min-lldb-version: 310
// ignore-gdb-version: 7.11.90 - 7.12
// ignore-gdb-version: 7.11.90 - 7.12.9

// compile-flags:-g

Expand Down
2 changes: 1 addition & 1 deletion src/test/debuginfo/generic-struct-style-enum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-tidy-linelength
// min-lldb-version: 310
// ignore-gdb-version: 7.11.90 - 7.12
// ignore-gdb-version: 7.11.90 - 7.12.9

// compile-flags:-g

Expand Down
2 changes: 1 addition & 1 deletion src/test/debuginfo/generic-tuple-style-enum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-tidy-linelength
// min-lldb-version: 310
// ignore-gdb-version: 7.11.90 - 7.12
// ignore-gdb-version: 7.11.90 - 7.12.9

// compile-flags:-g

Expand Down
2 changes: 1 addition & 1 deletion src/test/debuginfo/packed-struct.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-tidy-linelength
// min-lldb-version: 310
// ignore-gdb-version: 7.11.90 - 7.12
// ignore-gdb-version: 7.11.90 - 7.12.9

// compile-flags:-g

Expand Down
2 changes: 1 addition & 1 deletion src/test/debuginfo/recursive-struct.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-tidy-linelength
// ignore-lldb
// ignore-gdb-version: 7.11.90 - 7.12
// ignore-gdb-version: 7.11.90 - 7.12.9

// compile-flags:-g

Expand Down
2 changes: 1 addition & 1 deletion src/test/debuginfo/struct-in-enum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-tidy-linelength
// min-lldb-version: 310
// ignore-gdb-version: 7.11.90 - 7.12
// ignore-gdb-version: 7.11.90 - 7.12.9

// compile-flags:-g

Expand Down
2 changes: 1 addition & 1 deletion src/test/debuginfo/struct-style-enum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-tidy-linelength
// min-lldb-version: 310
// ignore-gdb-version: 7.11.90 - 7.12
// ignore-gdb-version: 7.11.90 - 7.12.9

// compile-flags:-g

Expand Down
2 changes: 1 addition & 1 deletion src/test/debuginfo/tuple-style-enum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-tidy-linelength
// min-lldb-version: 310
// ignore-gdb-version: 7.11.90 - 7.12
// ignore-gdb-version: 7.11.90 - 7.12.9

// compile-flags:-g

Expand Down
2 changes: 1 addition & 1 deletion src/test/debuginfo/union-smoke.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// except according to those terms.

// min-lldb-version: 310
// ignore-gdb-version: 7.11.90 - 7.12
// ignore-gdb-version: 7.11.90 - 7.12.9

// compile-flags:-g

Expand Down
2 changes: 1 addition & 1 deletion src/test/debuginfo/unique-enum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// ignore-tidy-linelength
// min-lldb-version: 310
// ignore-gdb-version: 7.11.90 - 7.12
// ignore-gdb-version: 7.11.90 - 7.12.9

// compile-flags:-g

Expand Down

0 comments on commit bee32f0

Please sign in to comment.