@@ -388,6 +388,10 @@ mod runtest {
388
388
export run;
389
389
390
390
fn run( cx: & cx, testfile: & str ) {
391
+ if ( cx. config. verbose) {
392
+ // We're going to be dumping a lot of info. Start on a new line.
393
+ io:: stdout( ) . write_str( "\n \n " ) ;
394
+ }
391
395
log #fmt( "running %s" , testfile) ;
392
396
task:: unsupervise( ) ;
393
397
let props = load_props( testfile) ;
@@ -523,7 +527,7 @@ mod runtest {
523
527
let cmdline =
524
528
{
525
529
let cmdline = make_cmdline( lib_path, prog, args) ;
526
- logv( cx. config, #fmt( "running %s" , cmdline) ) ;
530
+ logv( cx. config, #fmt( "executing %s" , cmdline) ) ;
527
531
cmdline
528
532
} ;
529
533
let res = procsrv:: run( cx. procsrv, lib_path, prog, args) ;
@@ -562,9 +566,9 @@ mod runtest {
562
566
fn maybe_dump_to_stdout( config: & config,
563
567
out: & str , err: & str ) {
564
568
if config. verbose {
565
- let sep1 = #fmt( "-%s -----------------------------------" ,
569
+ let sep1 = #fmt( "------%s ------------------------------" ,
566
570
"stdout" ) ;
567
- let sep2 = #fmt( "-%s -----------------------------------" ,
571
+ let sep2 = #fmt( "------%s ------------------------------" ,
568
572
"stderr" ) ;
569
573
let sep3 = "------------------------------------------" ;
570
574
io:: stdout( ) . write_line( sep1) ;
0 commit comments