From 47c6a95d0786edad1910a62b620babe739fe218f Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Thu, 28 Sep 2017 18:27:22 -0700 Subject: [PATCH] zstreamtest : run unit tests only during "normal" session not during --mt, --newapi and --opaque this avoids running them 4x during `make test` --- tests/zstreamtest.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/zstreamtest.c b/tests/zstreamtest.c index 6ae4ef96c..16f514425 100644 --- a/tests/zstreamtest.c +++ b/tests/zstreamtest.c @@ -1614,9 +1614,9 @@ int main(int argc, const char** argv) /* Parsing commands. Aggregated commands are allowed */ if (argument[0]=='-') { - if (!strcmp(argument, "--mt")) { selected_api=mt_api; continue; } - if (!strcmp(argument, "--newapi")) { selected_api=advanced_api; continue; } - if (!strcmp(argument, "--opaqueapi")) { selected_api=advanced_api; useOpaqueAPI = 1; continue; } + if (!strcmp(argument, "--mt")) { selected_api=mt_api; testNb += !testNb; continue; } + if (!strcmp(argument, "--newapi")) { selected_api=advanced_api; testNb += !testNb; continue; } + if (!strcmp(argument, "--opaqueapi")) { selected_api=advanced_api; testNb += !testNb; useOpaqueAPI = 1; continue; } if (!strcmp(argument, "--no-big-tests")) { bigTests=0; continue; } argument++;