Will
42f5ac568a
Fix tests that fail on FreeBSD
2015-02-15 17:18:55 +09:00
Michael Woerister
91a0e18866
debuginfo: Add a rust-gdb shell script that will start GDB with Rust pretty printers enabled.
2014-12-30 17:26:13 +01:00
Steven Fackler
3dcd215740
Switch to purely namespaced enums
...
This breaks code that referred to variant names in the same namespace as
their enum. Reexport the variants in the old location or alter code to
refer to the new locations:
```
pub enum Foo {
A,
B
}
fn main() {
let a = A;
}
```
=>
```
pub use self::Foo::{A, B};
pub enum Foo {
A,
B
}
fn main() {
let a = A;
}
```
or
```
pub enum Foo {
A,
B
}
fn main() {
let a = Foo::A;
}
```
[breaking-change]
2014-11-17 07:35:51 -08:00
Michael Woerister
54a5a2b365
debuginfo: Make GDB tests use line breakpoints like done in LLDB tests.
...
On some Windows versions of GDB this is more stable than setting breakpoints via function names.
2014-10-31 18:49:59 +01:00
Brian Anderson
0a83d02efc
Ignore two gdb tests on windows that are failing on the bots
2014-09-18 18:35:41 -07:00
Alex Crichton
0515e71531
test: Un-ignore some GDB pretty printing tests
...
I've confirmed that these are working on the snapshot builders
Closes #16919
2014-09-17 07:50:30 -07:00
Alex Crichton
b090905b17
test: Ignore failing gdb pretty tests
...
These tests are blocking a linux nightly and a new snapshot, so ignore them for
now. Their tracking issue is #16919 .
2014-09-02 08:34:00 -07:00
Michael Woerister
849ae5d881
debuginfo: Emit different autotest debugger scripts depending on GDB version.
2014-08-27 15:19:14 +02:00