miller/go/accept-case
2020-11-22 22:28:39 -05:00

11 lines
191 B
Bash
Executable file

#!/bin/bash
# See ./reg-test/run
for arg; do
src=output-reg-test/$arg.out
if [ ! -f $src ]; then
echo "Cannot find source $src" 1>&2
exit 1
fi
cp $src reg-test/expected
done