summaryrefslogtreecommitdiffstats
path: root/src/test/ui/test-attrs/test-filter-multiple.rs
blob: 04dd83b7fd0f79a4c43ac9272aa92f3b01fc0e5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// run-pass
// compile-flags: --test
// run-flags: --test-threads=1 test1 test2
// check-run-results
// normalize-stdout-test "finished in \d+\.\d+s" -> "finished in $$TIME"
// ignore-emscripten no threads support

#[test]
fn test1() {}

#[test]
fn test2() {}

#[test]
fn test3() {
    panic!("this should not run");
}