nac3standalone: work around bash mess with exit codes of substituted processes

https://unix.stackexchange.com/questions/376114/how-to-detect-an-error-using-process-substitution
escape-analysis
Sebastien Bourdeauducq 2022-01-23 11:15:11 +08:00
parent 64b94955fe
commit 2a0caf931f
1 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,9 @@ set -e
for demo in src/*.py; do
echo "checking $demo..."
diff -Nau <(./interpret_demo.py $demo) <(./run_demo.sh $demo)
./interpret_demo.py $demo > interpreted.log
./run_demo.sh $demo > run.log
diff -Nau interpreted.log run.log
done
echo "PASSED"