2015-03-19 15:42:53 -04:00
|
|
|
// This checks that RUST_TEST_THREADS not being 1, 2, ... is detected
|
2013-08-28 22:58:41 +10:00
|
|
|
// properly.
|
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ run-fail
|
|
|
|
//@ error-pattern:should be a positive integer
|
|
|
|
//@ compile-flags: --test
|
|
|
|
//@ exec-env:RUST_TEST_THREADS=foo
|
2024-03-06 12:19:20 -08:00
|
|
|
//@ needs-threads
|
2013-08-28 22:58:41 +10:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn do_nothing() {}
|