@@ -15,16 +15,16 @@ macro_rules! x {
15
15
$what, '(' , $( $who, ) * ')' , "'" , "[..]" )
16
16
}
17
17
} } ;
18
- ( $tool: tt => $what: tt of $who: tt with $( $ first_value: tt $( $other_values: tt) * ) ? ) => { {
18
+ ( $tool: tt => $what: tt of $who: tt with $first_value: tt $( $other_values: tt) * ) => { {
19
19
#[ cfg( windows) ]
20
20
{
21
21
concat!( "[RUNNING] [..]" , $tool, "[..] --check-cfg \" " ,
22
- $what, '(' , $who, ", values(" , $ ( "/\" " , $first_value, "/\" " , $( ", " , "/\" " , $other_values, "/\" " , ) * ) * "))" , '"' , "[..]" )
22
+ $what, '(' , $who, ", values(" , "/\" " , $first_value, "/\" " , $( ", " , "/\" " , $other_values, "/\" " , ) * "))" , '"' , "[..]" )
23
23
}
24
24
#[ cfg( not( windows) ) ]
25
25
{
26
26
concat!( "[RUNNING] [..]" , $tool, "[..] --check-cfg '" ,
27
- $what, '(' , $who, ", values(" , $ ( "\" " , $first_value, "\" " , $( ", " , "\" " , $other_values, "\" " , ) * ) * "))" , "'" , "[..]" )
27
+ $what, '(' , $who, ", values(" , "\" " , $first_value, "\" " , $( ", " , "\" " , $other_values, "\" " , ) * "))" , "'" , "[..]" )
28
28
}
29
29
} } ;
30
30
}
@@ -150,7 +150,7 @@ fn well_known_names_values() {
150
150
151
151
p. cargo ( "check -v -Zcheck-cfg" )
152
152
. masquerade_as_nightly_cargo ( & [ "check-cfg" ] )
153
- . with_stderr_contains ( x ! ( "rustc" => "cfg" of "feature" with ) )
153
+ . with_stderr_contains ( x ! ( "rustc" => "cfg" ) )
154
154
. run ( ) ;
155
155
}
156
156
@@ -213,7 +213,7 @@ fn well_known_names_values_test() {
213
213
214
214
p. cargo ( "test -v -Zcheck-cfg" )
215
215
. masquerade_as_nightly_cargo ( & [ "check-cfg" ] )
216
- . with_stderr_contains ( x ! ( "rustc" => "cfg" of "feature" with ) )
216
+ . with_stderr_contains ( x ! ( "rustc" => "cfg" ) )
217
217
. run ( ) ;
218
218
}
219
219
@@ -226,8 +226,8 @@ fn well_known_names_values_doctest() {
226
226
227
227
p. cargo ( "test -v --doc -Zcheck-cfg" )
228
228
. masquerade_as_nightly_cargo ( & [ "check-cfg" ] )
229
- . with_stderr_contains ( x ! ( "rustc" => "cfg" of "feature" with ) )
230
- . with_stderr_contains ( x ! ( "rustdoc" => "cfg" of "feature" with ) )
229
+ . with_stderr_contains ( x ! ( "rustc" => "cfg" ) )
230
+ . with_stderr_contains ( x ! ( "rustdoc" => "cfg" ) )
231
231
. run ( ) ;
232
232
}
233
233
0 commit comments