File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ static int usage (void)
121
121
"num_values:\tone (or more) numbers of values to communicate (default:%d)\n"
122
122
"report:\t\tlevel of detail for tests being run, see -l (default:SUMMARY)\n"
123
123
"execution_mode:\tlevel of correctness testing, tests to run and internal tests, see -l (default:RELAXED)\n"
124
- "num_threads:\tnumber of threads to execute the tests (default:no threads )\n"
124
+ "num_threads:\tnumber of additional threads to execute the tests (default: 0 )\n"
125
125
"\n"
126
126
"All multiple test/comm/datatype-names must be comma-separated.\n"
127
127
"Names are not case-sensitive, due to spaces in names, proper quoting should be used.\n"
@@ -560,7 +560,7 @@ int main (int argc, char * argv[])
560
560
}
561
561
562
562
#ifdef HAVE_MPI2_THREADS
563
- if (num_threads <= 0 )
563
+ if (num_threads < 0 )
564
564
{
565
565
printf ("Error: Number of threads must be greater than 0 (given %d)\n" , num_threads );
566
566
usage ();
You can’t perform that action at this time.
0 commit comments