scripts/run_tests.sh: stop auto-logging to run_tests.log

This isn't useful for CI testing, which collects stdout instead.
Just remove the automatic log file for now.
This commit is contained in:
Eric Biggers 2020-10-18 14:21:26 -07:00
parent c583b0a70c
commit cdd71f52f0
3 changed files with 1 additions and 6 deletions

1
.gitignore vendored
View File

@ -17,7 +17,6 @@
/checksum
/gzip
/gunzip
/run_tests.log
/test_*
tags
cscope*

View File

@ -346,7 +346,7 @@ clean:
.lib-cflags .prog-cflags
realclean: clean
rm -f tags cscope* run_tests.log
rm -f tags cscope*
FORCE:

View File

@ -47,10 +47,6 @@ SANITIZE_CFLAGS="-fsanitize=undefined -fno-sanitize-recover=undefined,integer"
###############################################################################
rm -f run_tests.log
exec > >(tee -ia run_tests.log)
exec 2> >(tee -ia run_tests.log >&2)
TESTS_SKIPPED=0
log_skip() {
log "[WARNING, TEST SKIPPED]: $@"