diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/coverage.sh | 1 | ||||
-rwxr-xr-x | scripts/travis-test.sh | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/scripts/coverage.sh b/scripts/coverage.sh index f167af52..5f4e922b 100755 --- a/scripts/coverage.sh +++ b/scripts/coverage.sh @@ -35,6 +35,5 @@ log_and_run() { log_and_run lcov --zerocounters -d ${BIN_DIR} --rc lcov_branch_coverage=1 log_and_run python test/run-tests.py --bindir ${BIN_DIR} -log_and_run python test/run-tests.py --bindir ${BIN_DIR} -a=--use-libc-allocator log_and_run lcov -c -d ${BIN_DIR} -o ${COV_FILE} --rc lcov_branch_coverage=1 log_and_run genhtml --branch-coverage -o ${COV_HTML_DIR} ${COV_FILE} diff --git a/scripts/travis-test.sh b/scripts/travis-test.sh index 450769de..a3c083c9 100755 --- a/scripts/travis-test.sh +++ b/scripts/travis-test.sh @@ -48,12 +48,10 @@ for BUILD_TYPE in ${BUILD_TYPES_UPPER}; do if [[ -n "${SANITIZER:-}" ]]; then if set_run_test_args ${COMPILER} ${BUILD_TYPE} ${SANITIZER}; then run_tests - run_tests -a=--use-libc-allocator fi else if set_run_test_args ${COMPILER} ${BUILD_TYPE}; then run_tests - run_tests -a=--use-libc-allocator fi fi done |