Skip to content

Commit 9a084e6

Browse files
committed
Add a more thorough test of incorrect/unusal #[coverage(..)] syntax
This test reflects the current implementation behaviour, which is not necessarily the desired behaviour.
1 parent 605b615 commit 9a084e6

File tree

2 files changed

+136
-0
lines changed

2 files changed

+136
-0
lines changed

tests/ui/coverage-attr/bad-syntax.rs

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
#![feature(coverage_attribute)]
2+
3+
// Tests the error messages produced (or not produced) by various unusual
4+
// uses of the `#[coverage(..)]` attribute.
5+
6+
// FIXME(#84605): Multiple coverage attributes with the same value are useless,
7+
// and should probably produce a diagnostic.
8+
#[coverage(off)]
9+
#[coverage(off)]
10+
fn multiple_consistent() {}
11+
12+
// FIXME(#84605): When there are multiple inconsistent coverage attributes,
13+
// it's unclear which one will prevail.
14+
#[coverage(off)]
15+
#[coverage(on)]
16+
fn multiple_inconsistent() {}
17+
18+
#[coverage] //~ ERROR expected `coverage(off)` or `coverage(on)`
19+
fn bare_word() {}
20+
21+
// FIXME(#84605): This shows as multiple different errors, one of which suggests
22+
// writing bare `#[coverage]`, which is not allowed.
23+
#[coverage = true]
24+
//~^ ERROR expected `coverage(off)` or `coverage(on)`
25+
//~| ERROR malformed `coverage` attribute input
26+
//~| HELP the following are the possible correct uses
27+
//~| SUGGESTION #[coverage(on|off)]
28+
fn key_value() {}
29+
30+
#[coverage()] //~ ERROR expected `coverage(off)` or `coverage(on)`
31+
fn list_empty() {}
32+
33+
#[coverage(off, off)] //~ ERROR expected `coverage(off)` or `coverage(on)`
34+
fn list_consistent() {}
35+
36+
#[coverage(off, on)] //~ ERROR expected `coverage(off)` or `coverage(on)`
37+
fn list_inconsistent() {}
38+
39+
#[coverage(bogus)] //~ ERROR expected `coverage(off)` or `coverage(on)`
40+
fn bogus_word() {}
41+
42+
#[coverage(bogus, off)] //~ ERROR expected `coverage(off)` or `coverage(on)`
43+
fn bogus_word_before() {}
44+
45+
#[coverage(off, bogus)] //~ ERROR expected `coverage(off)` or `coverage(on)`
46+
fn bogus_word_after() {}
47+
48+
#[coverage(off,)]
49+
fn comma_after() {}
50+
51+
// FIXME(#84605): This shows as multiple different errors.
52+
#[coverage(,off)]
53+
//~^ ERROR expected identifier, found `,`
54+
//~| HELP remove this comma
55+
//~| ERROR expected `coverage(off)` or `coverage(on)`
56+
fn comma_before() {}
57+
58+
fn main() {}
+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
error: malformed `coverage` attribute input
2+
--> $DIR/bad-syntax.rs:23:1
3+
|
4+
LL | #[coverage = true]
5+
| ^^^^^^^^^^^^^^^^^^
6+
|
7+
help: the following are the possible correct uses
8+
|
9+
LL | #[coverage(on|off)]
10+
|
11+
LL | #[coverage]
12+
|
13+
14+
error: expected identifier, found `,`
15+
--> $DIR/bad-syntax.rs:52:12
16+
|
17+
LL | #[coverage(,off)]
18+
| ^
19+
| |
20+
| expected identifier
21+
| help: remove this comma
22+
23+
error: expected `coverage(off)` or `coverage(on)`
24+
--> $DIR/bad-syntax.rs:18:1
25+
|
26+
LL | #[coverage]
27+
| ^^^^^^^^^^^
28+
29+
error: expected `coverage(off)` or `coverage(on)`
30+
--> $DIR/bad-syntax.rs:23:1
31+
|
32+
LL | #[coverage = true]
33+
| ^^^^^^^^^^^^^^^^^^
34+
35+
error: expected `coverage(off)` or `coverage(on)`
36+
--> $DIR/bad-syntax.rs:30:1
37+
|
38+
LL | #[coverage()]
39+
| ^^^^^^^^^^^^^
40+
41+
error: expected `coverage(off)` or `coverage(on)`
42+
--> $DIR/bad-syntax.rs:33:1
43+
|
44+
LL | #[coverage(off, off)]
45+
| ^^^^^^^^^^^^^^^^^^^^^
46+
47+
error: expected `coverage(off)` or `coverage(on)`
48+
--> $DIR/bad-syntax.rs:36:1
49+
|
50+
LL | #[coverage(off, on)]
51+
| ^^^^^^^^^^^^^^^^^^^^
52+
53+
error: expected `coverage(off)` or `coverage(on)`
54+
--> $DIR/bad-syntax.rs:39:1
55+
|
56+
LL | #[coverage(bogus)]
57+
| ^^^^^^^^^^^^^^^^^^
58+
59+
error: expected `coverage(off)` or `coverage(on)`
60+
--> $DIR/bad-syntax.rs:42:1
61+
|
62+
LL | #[coverage(bogus, off)]
63+
| ^^^^^^^^^^^^^^^^^^^^^^^
64+
65+
error: expected `coverage(off)` or `coverage(on)`
66+
--> $DIR/bad-syntax.rs:45:1
67+
|
68+
LL | #[coverage(off, bogus)]
69+
| ^^^^^^^^^^^^^^^^^^^^^^^
70+
71+
error: expected `coverage(off)` or `coverage(on)`
72+
--> $DIR/bad-syntax.rs:52:1
73+
|
74+
LL | #[coverage(,off)]
75+
| ^^^^^^^^^^^^^^^^^
76+
77+
error: aborting due to 11 previous errors
78+

0 commit comments

Comments
 (0)