Nikita Baksalyar
e5da5d59f8
Rename sunos to solaris
2016-01-31 19:01:30 +03:00
Nikita Baksalyar
f189d7a693
Add Illumos support
2016-01-31 18:57:26 +03:00
Tamir Duberstein
e1073dd501
Remove reference to gdb-pretty-struct-and-enums.rs
...
It was removed in bba934f19a
.
Fixes #27059 .
2015-07-15 23:51:51 -04:00
Tamir Duberstein
54de911f35
#10381 : Warnings
2015-04-28 17:51:43 -07:00
Dave Huseby
5387189d5b
fixing some tests and temporarily disabling others to get Bitrig build working 100%
2015-04-04 12:33:44 -07:00
Alex Crichton
43bfaa4a33
Mass rename uint/int to usize/isize
...
Now that support has been removed, all lingering use cases are renamed.
2015-03-26 12:10:22 -07:00
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