b2/core/run_all_tests.sh
2025-01-14 01:15:53 +01:00

10 lines
204 B
Bash
Executable File

#! /bin/bash
printf "running all tests\n\n\n" | tee -a "run_all.log"
while read suite; do
printf "%s\n\n" $suite | tee -a "run_all.log"
./$suite | tee -a "run_all.log"
done <test/available_tests.txt