Skip to content

Commit

Permalink
test_all.sh: run all tests in one batch
Browse files Browse the repository at this point in the history
  • Loading branch information
linrunner committed Jan 11, 2025
1 parent 60f1649 commit 97d54d9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions unit-tests/test_all.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/sh
readonly TESTLIB="./test-func"
# shellcheck disable=SC1090
. $TESTLIB || {
printf "Error: missing library %s\n" "${TESTLIB}" 1>&2
exit 70
}

start_report

./test-cpufreq.sh
./test-gpufreq.sh
./test-bc_all.sh

print_report

0 comments on commit 97d54d9

Please sign in to comment.