diff options
| author | 2026-03-14 17:46:42 +0100 | |
|---|---|---|
| committer | 2026-03-14 17:46:57 +0100 | |
| commit | eb9538f7a647e0b3686edc967d932acb817d46d3 (patch) | |
| tree | 61d5a26e06768ec801901ff27dff1ab30c113415 /test | |
| parent | de8673af7c0885201f284ffd8851ece2cde8cb18 (diff) | |
c-testsuite.sh
Diffstat (limited to 'test')
| -rwxr-xr-x | test/c-testsuite.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/c-testsuite.sh b/test/c-testsuite.sh index 4fbc49f..92f78d3 100755 --- a/test/c-testsuite.sh +++ b/test/c-testsuite.sh @@ -1,6 +1,8 @@ #!/bin/env sh +wd="$(pwd)" cd $(dirname "$0")/external/c-testsuite test -d .tmsu/ || (./scripts/make-search-index && ./single-exec antcc-x86_64 2>/dev/null >/dev/null) -./single-exec antcc-x86_64 | ./scripts/tapsummary | tee log.txt | head -n 5 -echo '... >> log.txt' +./single-exec antcc-x86_64 | ./scripts/tapsummary > log.txt +head -n 5 log.txt +echo "... >> $(realpath --relative-to "$wd" log.txt)" |