Skip to content

Commit

Permalink
Bug 1348809 - disable chains tests in all.sh for gyp builds, r=ttaubert
Browse files Browse the repository at this point in the history
--HG--
extra : rebase_source : 99400750bcab908872fcb5949c5668f5b97dd465
  • Loading branch information
franziskuskiefer committed Mar 20, 2017
1 parent 315e09b commit 74ac2a7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/all.sh
Expand Up @@ -273,7 +273,11 @@ run_cycles()
cycles="standard pkix upgradedb sharedb"
CYCLES=${NSS_CYCLES:-$cycles}

tests="cipher lowhash libpkix cert dbtests tools fips sdr crmf smime ssl ocsp merge pkits chains ec gtests ssl_gtests"
tests="cipher lowhash libpkix cert dbtests tools fips sdr crmf smime ssl ocsp merge pkits ec gtests ssl_gtests"
# Don't run chains tests when we have a gyp build.
if [ "$OBJDIR" != "Debug" -a "$OBJDIR" != "Release" ]; then
tests="$tests chains"
fi
TESTS=${NSS_TESTS:-$tests}

ALL_TESTS=${TESTS}
Expand Down

0 comments on commit 74ac2a7

Please sign in to comment.