diff options
author | Sven M. Hallberg <pesco@khjk.org> | 2018-05-09 18:38:44 +0200 |
---|---|---|
committer | Sven M. Hallberg <pesco@khjk.org> | 2018-05-09 18:38:44 +0200 |
commit | 595c72556bf0104fc1d7813de6e355091655ed11 (patch) | |
tree | 0edff21f16c52f06da5092f939fcd8924797a072 /test-suite | |
parent | 372737ba74baa2af8ee798df1b2768a5d827a179 (diff) |
use at least 6 Xs in mktemp filename templates
OpenBSD mktemp fails with an error otherwise.
Diffstat (limited to 'test-suite')
-rwxr-xr-x | test-suite/save-logs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/save-logs.sh b/test-suite/save-logs.sh index b61362108..9b8fff09f 100755 --- a/test-suite/save-logs.sh +++ b/test-suite/save-logs.sh @@ -9,7 +9,7 @@ mkdir "$SAVEDIR" # keep this synced with test-suite/Makefile FAILMARK="==========> FAILURE <==========" -FAILED=$(mktemp /tmp/coq-check-XXXXX) +FAILED=$(mktemp /tmp/coq-check-XXXXXX) find . '(' -path ./bugs/opened -prune ')' -o '(' -name '*.log' -exec grep "$FAILMARK" -q '{}' ';' -print0 ')' > "$FAILED" rsync -a --from0 --files-from="$FAILED" . "$SAVEDIR" |