Skip to content

Commit fa94f03

Browse files
committed
Remove unused verbose option
1 parent 3d49f58 commit fa94f03

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

cmdline.ggo

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,4 @@ option "num-threads" j "number of additional threads to execute the tests" int d
1616
option "report" r "level of detail for test report" values="summary","run","full" default="summary"
1717
option "execution-mode" x "level of correctness testing" values="disabled","strict","relaxed" default="relaxed"
1818

19-
option "verbose" v "enable verbose output for debugging purpose"
2019
option "list" l "list all available tests, communicators, datatypes and corresponding classes"

mpi_test_suite.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
/****************************************************************************/
2525
int tst_global_rank = 0;
2626
int tst_global_size = 0;
27-
int tst_verbose = 0;
2827
int tst_atomic = 0;
2928
tst_report_types tst_report = TST_REPORT_RUN;
3029
tst_mode_types tst_mode = TST_MODE_RELAXED;
@@ -399,10 +398,6 @@ int main (int argc, char * argv[])
399398
tst_atomic = 1;
400399
}
401400

402-
if(args_info.verbose_given) {
403-
tst_verbose = 1;
404-
}
405-
406401
#ifdef HAVE_MPI2_THREADS
407402
if (num_threads <= 0) {
408403
printf ("Error: Number of threads must be greater than 0 (given %d)\n", num_threads);

mpi_test_suite.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,6 @@ struct tst_mpi_type_mix_array {
368368

369369
extern int tst_global_rank;
370370
extern int tst_global_size;
371-
extern int tst_verbose;
372371
extern int tst_atomic;
373372

374373
extern const char * tst_reports[];

0 commit comments

Comments
 (0)