Rollup merge of #127554 - ferrocene:tshepang-add-missing-attribute, r… · model-checking/verify-rust-std@a18fbd0 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit a18fbd0

Rollup merge of rust-lang#127554 - ferrocene:tshepang-add-missing-attribute, r=pietroalbini

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

File tree

1 file changed

lines changed

1 file changed

lines changed

Lines changed: 1 addition & 0 deletions

Original file line number Diff line number Diff line change
@@ -240,6 +240,7 @@ fn panic_safe() {
240 240
241 241 #[test]
242 242 #[cfg_attr(miri, ignore)] // Miri is too slow
243 +#[cfg_attr(not(panic = "unwind"), ignore = "test requires unwinding support")]
243 244 fn test_sort() {
244 245 let mut rng = test_rng();
245 246