diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-01-08 23:05:07 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-01-08 23:05:07 +0900 |
| commit | 433b2c4ea87f6a8f69c59bad8bed96cb5fb8b935 (patch) | |
| tree | 0264bdfa283d5b50fa646bc6ebe8d52f1728788d /tests | |
| parent | 7a3070ee929e87d03a9e0aee8e368347f4e1d187 (diff) | |
| download | ducc-433b2c4ea87f6a8f69c59bad8bed96cb5fb8b935.tar.gz ducc-433b2c4ea87f6a8f69c59bad8bed96cb5fb8b935.tar.zst ducc-433b2c4ea87f6a8f69c59bad8bed96cb5fb8b935.zip | |
fix: some test cases not running
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/all.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/all.sh b/tests/all.sh index a5c6df8..39d5ca6 100644 --- a/tests/all.sh +++ b/tests/all.sh @@ -3,10 +3,10 @@ set -e rm -rf tests/tmp mkdir -p tests/tmp -for filename in tests/*.sh; do - testcase_="$(basename "$filename")" - testcase="${testcase_/%.sh/}" - test_file="tests/$testcase.sh" +for filename in tests/*.sh tests/*.c; do + testcase="$(basename "$filename")" + testcase="${testcase/%.sh/}" + testcase="${testcase/%.c/}" case "$testcase" in all|run|helpers) ;; |
