summary refs log tree commit diff
path: root/src/test/debug-info/limited-debuginfo.rs
AgeCommit message (Collapse)AuthorLines
2014-03-14debuginfo: Make limited-debuginfo test case more robust against GDB output ↵Michael Woerister-4/+4
variations. Fixes issue #12787.
2014-03-12auto merge of #12816 : michaelwoerister/rust/limited-debuginfo, r=alexcrichtonbors-1/+1
Fixes #12811 as described in the issue.
2014-03-11test: Relax a debuginfo testAlex Crichton-5/+5
This test is blocking a snapshot. Apparently the snapshot bot doesn't print 'limited-debuginfo::main()' but rather just 'main()'. Who knew?
2014-03-11debuginfo: Improve commandline option handling for debuginfo (fixes #12811)Michael Woerister-1/+1
The `-g` flag does not take an argument anymore while the argument to `--debuginfo` becomes mandatory. This change makes it possible again to run the compiler like this: `rustc -g ./file.rs` This did not work before because `./file.rs` was misinterpreted as the argument to `-g`. In order to get limited debuginfo, one now has to use `--debuginfo=1`.
2014-03-06debuginfo: Add test case for limited debuginfoMichael Woerister-0/+52