Skip to content

Commit 9b68396

Browse files
committed
Auto merge of #130723 - D0liphin:master, r=<try>
Add test for `available_parallelism()` This is a redo of [this PR](#104095). I changed the location of the test as per comments in the original thread. Otherwise the test is practically the same. try-job: test-various
2 parents 6c6d210 + 330e8e9 commit 9b68396

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

library/std/tests/thread.rs

+18
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,21 @@ fn thread_local_containing_const_statements() {
3737
assert_eq!(CELL.get(), 1);
3838
assert_eq!(REFCELL.take(), 1);
3939
}
40+
41+
#[test]
42+
// Include an ignore list on purpose, so that new platforms don't miss it
43+
#[cfg_attr(
44+
any(
45+
target_os = "redox",
46+
target_os = "l4re",
47+
target_os = "sgx",
48+
target_os = "solid_asp3",
49+
target_os = "teeos",
50+
target_os = "wasi"
51+
),
52+
should_panic
53+
)]
54+
fn available_parallelism() {
55+
// check that std::thread::available_parallelism() returns a valid value
56+
assert!(thread::available_parallelism().is_ok());
57+
}

0 commit comments

Comments
 (0)