@@ -1453,7 +1453,7 @@ LLVM version: 6.0",
14531453 // wait on cache write future so we don't race with it!
14541454 f. wait ( ) . unwrap ( ) ;
14551455 }
1456- _ => assert ! ( false , "Unexpected compile result: {:?}" , cached) ,
1456+ _ => panic ! ( "Unexpected compile result: {:?}" , cached) ,
14571457 }
14581458 assert_eq ! ( exit_status( 0 ) , res. status) ;
14591459 assert_eq ! ( COMPILER_STDOUT , res. stdout. as_slice( ) ) ;
@@ -1554,7 +1554,7 @@ LLVM version: 6.0",
15541554 // wait on cache write future so we don't race with it!
15551555 f. wait ( ) . unwrap ( ) ;
15561556 }
1557- _ => assert ! ( false , "Unexpected compile result: {:?}" , cached) ,
1557+ _ => panic ! ( "Unexpected compile result: {:?}" , cached) ,
15581558 }
15591559 assert_eq ! ( exit_status( 0 ) , res. status) ;
15601560 assert_eq ! ( COMPILER_STDOUT , res. stdout. as_slice( ) ) ;
@@ -1662,7 +1662,7 @@ LLVM version: 6.0",
16621662 // wait on cache write future so we don't race with it!
16631663 f. wait ( ) . unwrap ( ) ;
16641664 }
1665- _ => assert ! ( false , "Unexpected compile result: {:?}" , cached) ,
1665+ _ => panic ! ( "Unexpected compile result: {:?}" , cached) ,
16661666 }
16671667
16681668 assert_eq ! ( exit_status( 0 ) , res. status) ;
@@ -1744,7 +1744,7 @@ LLVM version: 6.0",
17441744 // wait on cache write future so we don't race with it!
17451745 f. wait ( ) . unwrap ( ) ;
17461746 }
1747- _ => assert ! ( false , "Unexpected compile result: {:?}" , cached) ,
1747+ _ => panic ! ( "Unexpected compile result: {:?}" , cached) ,
17481748 }
17491749 assert_eq ! ( exit_status( 0 ) , res. status) ;
17501750 assert_eq ! ( COMPILER_STDOUT , res. stdout. as_slice( ) ) ;
@@ -1771,7 +1771,7 @@ LLVM version: 6.0",
17711771 // wait on cache write future so we don't race with it!
17721772 f. wait ( ) . unwrap ( ) ;
17731773 }
1774- _ => assert ! ( false , "Unexpected compile result: {:?}" , cached) ,
1774+ _ => panic ! ( "Unexpected compile result: {:?}" , cached) ,
17751775 }
17761776 assert_eq ! ( exit_status( 0 ) , res. status) ;
17771777 assert_eq ! ( COMPILER_STDOUT , res. stdout. as_slice( ) ) ;
@@ -1932,7 +1932,7 @@ LLVM version: 6.0",
19321932 // wait on cache write future so we don't race with it!
19331933 f. wait ( ) . unwrap ( ) ;
19341934 }
1935- _ => assert ! ( false , "Unexpected compile result: {:?}" , cached) ,
1935+ _ => panic ! ( "Unexpected compile result: {:?}" , cached) ,
19361936 }
19371937 assert_eq ! ( exit_status( 0 ) , res. status) ;
19381938 assert_eq ! ( COMPILER_STDOUT , res. stdout. as_slice( ) ) ;
0 commit comments