diff options
| author | 2026-02-22 17:06:00 +0100 | |
|---|---|---|
| committer | 2026-02-22 17:09:39 +0100 | |
| commit | e54e917381a3f14dd4c8e65ccc7a133ab0d768fc (patch) | |
| tree | d80e2e1fdcc1932acc68c1892b213a2131d4b692 /test | |
| parent | 8f9f3b4d3c0f86dce85df2aa12196dbb15e716f2 (diff) | |
test: fix c-testsuite.sh to build search index if not present
Diffstat (limited to 'test')
| -rwxr-xr-x | test/c-testsuite.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/c-testsuite.sh b/test/c-testsuite.sh index 87bc37d..4fbc49f 100755 --- a/test/c-testsuite.sh +++ b/test/c-testsuite.sh @@ -1,5 +1,6 @@ #!/bin/env sh 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' |