foreign-c/test-all.sh

11 lines
149 B
Bash

#!/usr/bin/env bash
for testfile in ./test-*.sh
do
if [[ ! "${testfile}" = "./test-all.sh" ]];
then
bash "${testfile}"
fi
done