Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
97d47a5
Account for type params on method without parens
estebank Feb 9, 2020
202d401
miri: simplify singed operator overflow detection
RalfJung Feb 9, 2020
28f85c6
bring back extra check for int_min%-1
RalfJung Feb 9, 2020
7d2f6ae
miri: equip unary_op with overflow detection
RalfJung Feb 8, 2020
ae23f70
const-prop: use overflowing_unary_op for overflowing checking of unar…
RalfJung Feb 9, 2020
b434d7e
add test that checks overflows on arithmetic operators
RalfJung Feb 10, 2020
1ddb050
div/rem overflow tests: also test i128
RalfJung Feb 10, 2020
d6c5a04
some more tests for i128 oveflow behavior
RalfJung Feb 10, 2020
aeedc9d
Corrected ac_mitigation patch. That patch used the untrusted stack to…
raoulstrackx Feb 7, 2020
236ab6e
sanitize MXCSR/FPU control registers
raoulstrackx Feb 7, 2020
71b9ed4
Avoid jumping to Rust code with user %rsp (reentry_panic)
Feb 10, 2020
c561d23
remove outdated comment
RalfJung Feb 10, 2020
9d91489
review comment: wording
estebank Feb 10, 2020
b637c0e
Add initial debug fmt for Backtrace
yaahc Feb 10, 2020
4920456
Get vaguely working with a test for checking output
yaahc Feb 10, 2020
c0ba79e
less noisy format
yaahc Feb 10, 2020
0d5444f
remove unnecessary derives
yaahc Feb 10, 2020
76e6d6f
remove unnecessary Debug impl for BacktraceFrame
yaahc Feb 10, 2020
583dd2c
make it compile
yaahc Feb 10, 2020
8711778
final format cleanups
yaahc Feb 10, 2020
70c9133
remove Some from fn name
yaahc Feb 10, 2020
230ed3e
use debug_map and skip empty frames
yaahc Feb 11, 2020
de25048
add nice alt fmt for debug
yaahc Feb 11, 2020
192b103
make symbol printing consistent with backtrace_rs
yaahc Feb 11, 2020
7064a0e
maximum alternative consistency!
yaahc Feb 11, 2020
6797bfd
rule over the code in libstd with an iron fist
yaahc Feb 11, 2020
c8817aa
backwards again, god damnit
yaahc Feb 11, 2020
ec8ee7f
remove intentionally failing test
yaahc Feb 11, 2020
ee85e91
Update compiler-builtins to 0.1.25
tmandry Feb 12, 2020
03a73fa
Use IRBuilder to create memset
nikic Jan 5, 2020
737f08b
Fix mangled names of lifetime intrinsics
nikic Jan 5, 2020
c6b0803
Add support for new pass manager
nikic Jan 5, 2020
c8e567d
Minify CSS rules to be able to handle minified theme files as well
GuillaumeGomez Feb 12, 2020
109260f
Add test to check if minified theme are handled correctly
GuillaumeGomez Feb 12, 2020
f127aba
Rollup merge of #67954 - nikic:new-pm, r=nagisa
Dylan-DPC Feb 12, 2020
2a3c1a3
Rollup merge of #68981 - estebank:silence, r=davidtwco
Dylan-DPC Feb 12, 2020
29dd5df
Rollup merge of #69002 - RalfJung:miri-op-overflow, r=oli-obk,wesleyw…
Dylan-DPC Feb 12, 2020
5a800d7
Rollup merge of #69038 - yaahc:backtrace-debug, r=dtolnay
Dylan-DPC Feb 12, 2020
a908716
Rollup merge of #69040 - jethrogb:jb/cleanup-sgx-entry, r=nagisa
Dylan-DPC Feb 12, 2020
e86019c
Rollup merge of #69086 - tmandry:probestack-hidden-2, r=Dylan-DPC
Dylan-DPC Feb 12, 2020
839adda
Rollup merge of #69095 - GuillaumeGomez:minified-theme-check, r=Dylan…
Dylan-DPC Feb 12, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove intentionally failing test
  • Loading branch information
yaahc committed Feb 11, 2020
commit ec8ee7fb81c208fbd0fe53f11b1c792f3e0d6c6f
18 changes: 0 additions & 18 deletions src/libstd/backtrace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,21 +408,3 @@ impl Capture {
}
}
}

#[cfg(test)]
mod tests {
use super::*;

#[test]
fn debug_backtrace_fmt() {
let bt = Backtrace::capture();
eprintln!("uncaptured: {:?}", bt);
let bt = Backtrace::force_capture();
eprintln!("captured: {:?}", bt);
eprintln!("display print: {}", bt);
eprintln!("display print alt: {:#}", bt);
eprintln!("resolved: {:?}", bt);
eprintln!("resolved alt: {:#?}", bt);
unimplemented!();
}
}