zstreamtest : run unit tests only during "normal" session
not during --mt, --newapi and --opaque this avoids running them 4x during `make test`dev
parent
86b4fe5b45
commit
47c6a95d07
|
@ -1614,9 +1614,9 @@ int main(int argc, const char** argv)
|
||||||
/* Parsing commands. Aggregated commands are allowed */
|
/* Parsing commands. Aggregated commands are allowed */
|
||||||
if (argument[0]=='-') {
|
if (argument[0]=='-') {
|
||||||
|
|
||||||
if (!strcmp(argument, "--mt")) { selected_api=mt_api; continue; }
|
if (!strcmp(argument, "--mt")) { selected_api=mt_api; testNb += !testNb; continue; }
|
||||||
if (!strcmp(argument, "--newapi")) { selected_api=advanced_api; continue; }
|
if (!strcmp(argument, "--newapi")) { selected_api=advanced_api; testNb += !testNb; continue; }
|
||||||
if (!strcmp(argument, "--opaqueapi")) { selected_api=advanced_api; useOpaqueAPI = 1; continue; }
|
if (!strcmp(argument, "--opaqueapi")) { selected_api=advanced_api; testNb += !testNb; useOpaqueAPI = 1; continue; }
|
||||||
if (!strcmp(argument, "--no-big-tests")) { bigTests=0; continue; }
|
if (!strcmp(argument, "--no-big-tests")) { bigTests=0; continue; }
|
||||||
|
|
||||||
argument++;
|
argument++;
|
||||||
|
|
Loading…
Reference in New Issue