feat: add multiple test execution

This commit is contained in:
Maciej Sypien 2024-09-21 09:45:50 +02:00
parent 937fa5f529
commit 4944b6ecc0
No known key found for this signature in database
GPG key ID: 10BC01EDA6827DC8
5 changed files with 71 additions and 31 deletions

7
tests/run_all_linux_tests.sh Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env bash
main() {
for test in $(compgen -A function | grep "^test_linux_"); do "$test"; done
}
main "$@"