[svn-r5470] Purpose:

Update
Description:
    Only print out the parameters for a run if we're in debug mode one
    and the 0'th process or if we're in debug mode > 0.
Platforms tested:
    Linux
This commit is contained in:
Bill Wendling 2002-05-28 17:00:26 -05:00
parent 607fb9618b
commit 0ba943194e

View File

@ -326,7 +326,9 @@ main(int argc, char **argv)
}
}
report_parameters(opts);
if ((pio_debug_level == 0 && comm_world_rank_g == 0) || pio_debug_level > 0)
report_parameters(opts);
run_test_loop(opts);
finish: