@@ -176,10 +176,8 @@ impl<'test> TestCx<'test> {
176
176
if proc_res. status . success ( ) {
177
177
self . fatal_proc_rec ( "test failed: expected check failure, got success" , & proc_res) ;
178
178
}
179
- } else {
180
- if !proc_res. status . success ( ) {
181
- self . fatal_proc_rec ( "test failed: expected check success, got failure" , & proc_res) ;
182
- }
179
+ } else if !proc_res. status . success ( ) {
180
+ self . fatal_proc_rec ( "test failed: expected check success, got failure" , & proc_res) ;
183
181
}
184
182
}
185
183
@@ -202,13 +200,8 @@ impl<'test> TestCx<'test> {
202
200
& proc_res,
203
201
) ;
204
202
}
205
- } else {
206
- if !proc_res. status . success ( ) {
207
- self . fatal_proc_rec (
208
- "test failed: expected codegen success, got failure" ,
209
- & proc_res,
210
- ) ;
211
- }
203
+ } else if !proc_res. status . success ( ) {
204
+ self . fatal_proc_rec ( "test failed: expected codegen success, got failure" , & proc_res) ;
212
205
}
213
206
}
214
207
@@ -247,13 +240,11 @@ impl<'test> TestCx<'test> {
247
240
& proc_res,
248
241
) ;
249
242
}
250
- } else {
251
- if !proc_res. status . success ( ) {
252
- self . fatal_proc_rec (
253
- "test failed: expected verification success, got failure" ,
254
- & proc_res,
255
- ) ;
256
- }
243
+ } else if !proc_res. status . success ( ) {
244
+ self . fatal_proc_rec (
245
+ "test failed: expected verification success, got failure" ,
246
+ & proc_res,
247
+ ) ;
257
248
}
258
249
}
259
250
}
@@ -278,12 +269,10 @@ impl<'test> TestCx<'test> {
278
269
/// If the test file contains expected failures in some locations, ensure
279
270
/// that verification does not succeed in those locations.
280
271
fn verify_expect_fail ( str : & str ) -> Vec < usize > {
281
- let re = Regex :: new ( r"line [0-9]+ EXPECTED FAIL: SUCCESS" ) . unwrap ( ) ;
272
+ let re = Regex :: new ( r"line ( [0-9]+) EXPECTED FAIL: SUCCESS" ) . unwrap ( ) ;
282
273
let mut lines = vec ! [ ] ;
283
- for m in re. find_iter ( str) {
284
- let splits = m. as_str ( ) . split_ascii_whitespace ( ) ;
285
- let num_str = splits. skip ( 1 ) . next ( ) . unwrap ( ) ;
286
- let num = num_str. parse ( ) . unwrap ( ) ;
274
+ for m in re. captures_iter ( str) {
275
+ let num = m. get ( 1 ) . unwrap ( ) . as_str ( ) . parse ( ) . unwrap ( ) ;
287
276
lines. push ( num) ;
288
277
}
289
278
lines
@@ -365,35 +354,36 @@ impl<'test> TestCx<'test> {
365
354
fn verify_output ( & self , proc_res : & ProcRes , expected : & str ) {
366
355
// Include the output from stderr here for cases where there are exceptions
367
356
let output = proc_res. stdout . to_string ( ) + & proc_res. stderr ;
368
- if let Some ( lines) =
369
- TestCx :: contains_lines ( & output. split ( '\n' ) . collect ( ) , expected. split ( '\n' ) . collect ( ) )
370
- {
357
+ if let Some ( lines) = TestCx :: contains_lines (
358
+ & output. split ( '\n' ) . collect :: < Vec < _ > > ( ) ,
359
+ expected. split ( '\n' ) . collect ( ) ,
360
+ ) {
371
361
self . fatal_proc_rec (
372
362
& format ! (
373
363
"test failed: expected output to contain the line(s):\n {}" ,
374
364
lines. join( "\n " )
375
365
) ,
376
- & proc_res,
366
+ proc_res,
377
367
) ;
378
368
}
379
369
}
380
370
381
371
/// Looks for each line or set of lines in `str`. Returns `None` if all
382
372
/// lines are in `str`. Otherwise, it returns the first line not found in
383
373
/// `str`.
384
- fn contains_lines < ' a > ( str : & Vec < & str > , lines : Vec < & ' a str > ) -> Option < Vec < & ' a str > > {
374
+ fn contains_lines < ' a > ( str : & [ & str ] , lines : Vec < & ' a str > ) -> Option < Vec < & ' a str > > {
385
375
let mut consecutive_lines: Vec < & str > = Vec :: new ( ) ;
386
376
for line in lines {
387
377
// A line that ends in "\" indicates that the next line in the
388
378
// expected file should appear on the consecutive line in the
389
379
// output. This is a temporary mechanism until we have more robust
390
380
// json-based checking of verification results
391
- if let Some ( prefix) = line. strip_suffix ( " \\ " ) {
381
+ if let Some ( prefix) = line. strip_suffix ( '\\' ) {
392
382
// accumulate the lines
393
383
consecutive_lines. push ( prefix) ;
394
384
} else {
395
385
consecutive_lines. push ( line) ;
396
- if !TestCx :: contains ( & str, & consecutive_lines) {
386
+ if !TestCx :: contains ( str, & consecutive_lines) {
397
387
return Some ( consecutive_lines) ;
398
388
}
399
389
consecutive_lines. clear ( ) ;
@@ -404,7 +394,7 @@ impl<'test> TestCx<'test> {
404
394
405
395
/// Check if there is a set of consecutive lines in `str` where each line
406
396
/// contains a line from `lines`
407
- fn contains ( str : & Vec < & str > , lines : & Vec < & str > ) -> bool {
397
+ fn contains ( str : & [ & str ] , lines : & [ & str ] ) -> bool {
408
398
let mut i = str. iter ( ) ;
409
399
while let Some ( output_line) = i. next ( ) {
410
400
if output_line. contains ( & lines[ 0 ] ) {
@@ -413,9 +403,9 @@ impl<'test> TestCx<'test> {
413
403
let mut matches = true ;
414
404
// Clone the iterator so that we keep i unchanged
415
405
let mut j = i. clone ( ) ;
416
- for i in 1 .. lines. len ( ) {
406
+ for line in lines. iter ( ) . skip ( 1 ) {
417
407
if let Some ( output_line) = j. next ( ) {
418
- if output_line. contains ( lines [ i ] ) {
408
+ if output_line. contains ( line ) {
419
409
continue ;
420
410
}
421
411
}
@@ -431,7 +421,7 @@ impl<'test> TestCx<'test> {
431
421
}
432
422
433
423
fn create_stamp ( & self ) {
434
- let stamp = crate :: stamp ( & self . config , self . testpaths , self . revision ) ;
424
+ let stamp = crate :: stamp ( self . config , self . testpaths , self . revision ) ;
435
425
fs:: write ( & stamp, "we only support one configuration" ) . unwrap ( ) ;
436
426
}
437
427
}
0 commit comments