3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-30 04:15:52 +00:00

Add a quick abc9 test

This commit is contained in:
Eddie Hung 2019-02-19 15:25:03 -08:00
parent 7b026c4bc3
commit ef1a1402bc
4 changed files with 29 additions and 0 deletions

View file

@ -8,3 +8,11 @@ for x in *_runtest.sh; do
exit 1
fi
done
for d in */; do
if [ -x $d/run-test.sh ]; then
cd $d
bash run-test.sh
cd ..
fi
done