about summary refs log tree commit diff
path: root/tests/ui/test-attrs/tests-listing-format-json.rs
blob: 9d57a6bc38346eec748ab87f7d462e416fc05b97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//@ no-prefer-dynamic
//@ compile-flags: --test
//@ run-flags: --list --format json -Zunstable-options
//@ run-pass
//@ check-run-results
//@ only-nightly
//@ normalize-stdout: "fake-test-src-base/test-attrs/" -> "$$DIR/"
//@ normalize-stdout: "fake-test-src-base\\test-attrs\\" -> "$$DIR/"

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

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

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

#[test]
fn a_test() {}