summaryrefslogtreecommitdiffstats
path: root/tests/ui/test-attrs/tests-listing-format-terse.rs
blob: 7835f71759cb41ec9f8c49f242dd3b794654a1f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// no-prefer-dynamic
// compile-flags: --test
// run-flags: --list --format terse
// run-pass
// check-run-results

// Checks the listing of tests with --format terse.

#![cfg(test)]
#[test]
fn m_test() {}

#[test]
#[ignore = "not yet implemented"]
fn z_test() {}

#[test]
fn a_test() {}