2023-08-17 21:53:55 -07:00

10 lines
143 B
Bash
Executable File

#!/bin/sh -e
. ../../../../scripts/utils.sh
for dir in base impl test-base test-impl
do
echo "[ $dir ]"
(cd $dir; ./check-cpp "$@")
done