about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/redundant_test_prefix.stderr
blob: d156af586df3f94b9573e62cc2d0859d34271cf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:17:4
   |
LL | fn test_f3() {
   |    ^^^^^^^ help: consider removing the `test_` prefix: `f3`
   |
   = note: `-D clippy::redundant-test-prefix` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::redundant_test_prefix)]`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:26:4
   |
LL | fn test_f4() {
   |    ^^^^^^^ help: consider removing the `test_` prefix: `f4`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:39:4
   |
LL | fn test_f6() {
   |    ^^^^^^^ help: consider removing the `test_` prefix: `f6`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:54:8
   |
LL |     fn test_foo() {
   |        ^^^^^^^^ help: consider removing the `test_` prefix: `foo`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:59:8
   |
LL |     fn test_foo_with_call() {
   |        ^^^^^^^^^^^^^^^^^^ help: consider removing the `test_` prefix: `foo_with_call`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:66:8
   |
LL |     fn test_f1() {
   |        ^^^^^^^ help: consider removing the `test_` prefix: `f1`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:71:8
   |
LL |     fn test_f2() {
   |        ^^^^^^^ help: consider removing the `test_` prefix: `f2`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:76:8
   |
LL |     fn test_f3() {
   |        ^^^^^^^ help: consider removing the `test_` prefix: `f3`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:81:8
   |
LL |     fn test_f4() {
   |        ^^^^^^^ help: consider removing the `test_` prefix: `f4`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:86:8
   |
LL |     fn test_f5() {
   |        ^^^^^^^ help: consider removing the `test_` prefix: `f5`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:91:8
   |
LL |     fn test_f6() {
   |        ^^^^^^^ help: consider removing the `test_` prefix: `f6`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:100:8
   |
LL |     fn test_foo() {
   |        ^^^^^^^^ help: consider removing the `test_` prefix: `foo`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:105:8
   |
LL |     fn test_foo_with_call() {
   |        ^^^^^^^^^^^^^^^^^^ help: consider removing the `test_` prefix: `foo_with_call`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:112:8
   |
LL |     fn test_f1() {
   |        ^^^^^^^ help: consider removing the `test_` prefix: `f1`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:117:8
   |
LL |     fn test_f2() {
   |        ^^^^^^^ help: consider removing the `test_` prefix: `f2`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:122:8
   |
LL |     fn test_f3() {
   |        ^^^^^^^ help: consider removing the `test_` prefix: `f3`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:127:8
   |
LL |     fn test_f4() {
   |        ^^^^^^^ help: consider removing the `test_` prefix: `f4`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:132:8
   |
LL |     fn test_f5() {
   |        ^^^^^^^ help: consider removing the `test_` prefix: `f5`

error: redundant `test_` prefix in test function name
  --> tests/ui/redundant_test_prefix.rs:137:8
   |
LL |     fn test_f6() {
   |        ^^^^^^^ help: consider removing the `test_` prefix: `f6`

error: aborting due to 19 previous errors