summary refs log tree commit diff
path: root/src/test/debug-info/method-on-enum.rs
AgeCommit message (Collapse)AuthorLines
2013-12-17debuginfo: Updated test cases to also test by-value self arguments.Michael Woerister-24/+24
2013-12-14Handle more cases in the heap lintsAlex Crichton-0/+1
2013-11-10tagging issue number(#10381)Young-il Choi-1/+1
2013-11-06Add make check support(arm-linux-androideabi debuginfo)sh8281.kim-0/+2
2013-10-29Unbreak the debuginfo tests.Jed Davis-8/+8
The variant used in debug-info/method-on-enum.rs had its layout changed by the smaller discriminant, so that the `u32` no longer overlaps both of the `u16`s, and thus the debugger is printing partially uninitialized data when it prints the wrong variant. Thus, the test runner is modified to accept wildcards (using a string that should be unlikely to occur literally), to allow for this.
2013-10-06Add appropriate #[feature] directives to testsAlex Crichton-0/+2
2013-09-10debuginfo: Support for namespaces (functions only)Michael Woerister-1/+1
2013-08-26Un-disabled debug info tests on Windows.Vadim Chugunov-2/+0
2013-08-16debuginfo: Added test cases for methods on structs, enums, traits, and ↵Michael Woerister-0/+141
tuple-structs. Also new test cases for tuple structs and by-value parameter passing.