aboutsummaryrefslogtreecommitdiffstats
path: root/tests/tools
diff options
context:
space:
mode:
authorEddie Hung <eddieh@ece.ubc.ca>2019-02-08 12:41:59 -0800
committerEddie Hung <eddieh@ece.ubc.ca>2019-02-08 12:41:59 -0800
commit587872236ecd1ca2f2a466bccc8d41618feb0dfb (patch)
treebc656d2d5d87cac551e58971ffc6487e07979250 /tests/tools
parent391ec75b07cc8c10818884f19329d719847957d3 (diff)
downloadyosys-587872236ecd1ca2f2a466bccc8d41618feb0dfb.tar.gz
yosys-587872236ecd1ca2f2a466bccc8d41618feb0dfb.tar.bz2
yosys-587872236ecd1ca2f2a466bccc8d41618feb0dfb.zip
Support and differentiate between ASCII and binary AIG testing
Diffstat (limited to 'tests/tools')
-rwxr-xr-xtests/tools/autotest.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tools/autotest.sh b/tests/tools/autotest.sh
index 3e1325b33..0ffa062e3 100755
--- a/tests/tools/autotest.sh
+++ b/tests/tools/autotest.sh
@@ -90,7 +90,7 @@ for fn
do
bn=${fn%.*}
ext=${fn##*.}
- if [[ "$ext" != "v" ]] && [[ "$ext" != "aag" ]]; then
+ if [[ "$ext" != "v" ]] && [[ "$ext" != "aag" ]] && [[ "$ext" != "aig" ]]; then
echo "Invalid argument: $fn" >&2
exit 1
fi