pns/prg/synan/run-tests.sh
Gašper Dobrovoljc a4773edb76
Added SynAn tests
2025-03-23 15:14:18 +01:00

7 lines
151 B
Bash

#!/bin/bash
for file in *.pins25; do
echo "Running $file"
java ../../src/pins25/phase/SynAn.java "$file" 2>&1 | tail -n 1
printf "\n"
done