fostr/bin/generate_test_code
Glen Whitney 7b00b01856
All checks were successful
continuous-integration/drone/push Build is passing
chore: Switch to this repository from predecessor
2021-01-30 15:37:53 -08:00

20 lines
402 B
Bash
Executable File

#!/bin/bash
failed=0
for dir in tests/extracted/*; do
for file in $dir/*.fos; do
for language in Python Javascript Haskell; do
echo bin/fosgen -l ${language%.*} $file ...
bin/fosgen -l $language $file
if [[ $? -ne 0 ]]; then
echo ' ... Failed.'
((failed++))
fi
done
done
done
echo "Code generation completed with $failed failures."
exit $failed