@@ -280,19 +280,11 @@ impl<'test> TestCx<'test> {
280
280
Ui | MirOpt => false ,
281
281
mode => panic ! ( "unimplemented for mode {:?}" , mode) ,
282
282
} ;
283
- if test_should_run {
284
- self . run_if_enabled ( )
285
- } else {
286
- WillExecute :: No
287
- }
283
+ if test_should_run { self . run_if_enabled ( ) } else { WillExecute :: No }
288
284
}
289
285
290
286
fn run_if_enabled ( & self ) -> WillExecute {
291
- if self . config . run_enabled ( ) {
292
- WillExecute :: Yes
293
- } else {
294
- WillExecute :: Disabled
295
- }
287
+ if self . config . run_enabled ( ) { WillExecute :: Yes } else { WillExecute :: Disabled }
296
288
}
297
289
298
290
fn should_run_successfully ( & self , pm : Option < PassMode > ) -> bool {
@@ -2451,11 +2443,7 @@ impl<'test> TestCx<'test> {
2451
2443
/// The revision, ignored for incremental compilation since it wants all revisions in
2452
2444
/// the same directory.
2453
2445
fn safe_revision ( & self ) -> Option < & str > {
2454
- if self . config . mode == Incremental {
2455
- None
2456
- } else {
2457
- self . revision
2458
- }
2446
+ if self . config . mode == Incremental { None } else { self . revision }
2459
2447
}
2460
2448
2461
2449
/// Gets the absolute path to the directory where all output for the given
@@ -2679,11 +2667,7 @@ impl<'test> TestCx<'test> {
2679
2667
2680
2668
fn charset ( ) -> & ' static str {
2681
2669
// FreeBSD 10.1 defaults to GDB 6.1.1 which doesn't support "auto" charset
2682
- if cfg ! ( target_os = "freebsd" ) {
2683
- "ISO-8859-1"
2684
- } else {
2685
- "UTF-8"
2686
- }
2670
+ if cfg ! ( target_os = "freebsd" ) { "ISO-8859-1" } else { "UTF-8" }
2687
2671
}
2688
2672
2689
2673
fn run_rustdoc_test ( & self ) {
@@ -4506,11 +4490,7 @@ impl<'test> TestCx<'test> {
4506
4490
for output_file in files {
4507
4491
println ! ( "Actual {} saved to {}" , kind, output_file. display( ) ) ;
4508
4492
}
4509
- if self . config . bless {
4510
- 0
4511
- } else {
4512
- 1
4513
- }
4493
+ if self . config . bless { 0 } else { 1 }
4514
4494
}
4515
4495
4516
4496
fn check_and_prune_duplicate_outputs (
0 commit comments