Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
d3f1618
fix python bootstrap tests requiring a downloaded stage0
pietroalbini Jun 14, 2024
fcb6ff5
fix rust bootstrap tests requiring a downloaded stage0
pietroalbini Jun 14, 2024
198c809
set the correct executable for initial_{rustc,cargo}
pietroalbini Jul 8, 2024
b4b2643
set the correct rustc and cargo even for tests invoking parse_inner
pietroalbini Jul 8, 2024
af3aa36
do not run test where it cannot run
tshepang Jul 9, 2024
7c88bda
E0191 suggestion correction, inserts turbofish without dyn (#91997)
tnuha Jul 9, 2024
9cd1d25
use utils::helpers::exe
pietroalbini Jul 10, 2024
c8e4447
Temporarily remove me from review rotation.
m-ou-se Jul 10, 2024
f77394f
instantiate higher ranked goals in candidate selection
lcnr Jul 10, 2024
e7bd16e
Fix local download of Docker caches
Kobzol Jul 10, 2024
e00fd78
simplify and future-proof `needs_normalization`
lcnr Jul 10, 2024
d17e0cf
Rollup merge of #126476 - ferrocene:pa-bootstrap-test-local-rustc, r=…
matthiaskrgr Jul 10, 2024
a7fe30d
Rollup merge of #127094 - Borgerr:E0191-suggestion-correction, r=fmease
matthiaskrgr Jul 10, 2024
aae262c
Rollup merge of #127554 - ferrocene:tshepang-add-missing-attribute, r…
matthiaskrgr Jul 10, 2024
bbb0f66
Rollup merge of #127564 - m-ou-se:review-rotation, r=joboet
matthiaskrgr Jul 10, 2024
7faef5d
Rollup merge of #127568 - lcnr:undo-leakcheck, r=oli-obk
matthiaskrgr Jul 10, 2024
3163919
Rollup merge of #127569 - Kobzol:ci-fix-docker-local-rebuild, r=nikic
matthiaskrgr Jul 10, 2024
22df186
Rollup merge of #127570 - lcnr:normalize-cool, r=compiler-errors
matthiaskrgr Jul 10, 2024
File filter

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
do not run test where it cannot run
This was seen on Ferrocene, where we have a custom test target that does not have unwind support
  • Loading branch information
tshepang authored Jul 9, 2024
commit af3aa36d60746f8fac262cd5a3d32f23d60f36ea
1 change: 1 addition & 0 deletions library/alloc/src/slice/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ fn panic_safe() {

#[test]
#[cfg_attr(miri, ignore)] // Miri is too slow
#[cfg_attr(not(panic = "unwind"), ignore = "test requires unwinding support")]
fn test_sort() {
let mut rng = test_rng();

Expand Down