Skip to content

Commit

Permalink
test: do regular, integration and thread tests if GETOPT is not avail…
Browse files Browse the repository at this point in the history
…able
  • Loading branch information
sreimers committed Mar 22, 2023
1 parent 8d70cf3 commit 53a623c
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions test/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,13 @@ int main(int argc, char *argv[])
#else
(void)argc;
(void)argv;
do_reg = true;
do_oom = false;
do_int = false;
do_perf = false;
do_all = false;
verbose = true;
do_reg = true;
do_int = true;
do_thread = true;
do_oom = false;
do_perf = false;
do_all = false;
verbose = true;
#endif

/* Initialise debugging */
Expand Down

0 comments on commit 53a623c

Please sign in to comment.