Added autotest -e (do not use -noexpr on write_verilog)

This commit is contained in:
Clifford Wolf 2014-08-30 18:34:07 +02:00
parent 6ff46323a3
commit 88db09255b
3 changed files with 6 additions and 4 deletions

View File

@ -1,2 +1,2 @@
#!/bin/bash
exec ${MAKE:-make} -f ../tools/autotest.mk *.v
exec ${MAKE:-make} -f ../tools/autotest.mk EXTRA_FLAGS="-e" *.v

View File

@ -1,2 +1,2 @@
#!/bin/bash
exec ${MAKE:-make} -f ../tools/autotest.mk EXTRA_FLAGS="-l hana_vlib.v -n 300" test_*.v
exec ${MAKE:-make} -f ../tools/autotest.mk EXTRA_FLAGS="-l hana_vlib.v -n 300 -e" test_*.v

View File

@ -19,7 +19,7 @@ if [ ! -f $toolsdir/cmp_tbdata -o $toolsdir/cmp_tbdata.c -nt $toolsdir/cmp_tbdat
( set -ex; gcc -Wall -o $toolsdir/cmp_tbdata $toolsdir/cmp_tbdata.c; ) || exit 1
fi
while getopts xmGl:wkjvrf:s:p:n: opt; do
while getopts xmGl:wkjvref:s:p:n: opt; do
case "$opt" in
x)
use_xsim=true ;;
@ -39,6 +39,8 @@ while getopts xmGl:wkjvrf:s:p:n: opt; do
verbose=true ;;
r)
backend_opts="$backend_opts -norename" ;;
e)
backend_opts="$( echo " $backend_opts " | sed 's, -noexpr ,,; s,^ ,,; s, $,,;'; )" ;;
f)
frontend="$OPTARG" ;;
s)
@ -49,7 +51,7 @@ while getopts xmGl:wkjvrf:s:p:n: opt; do
n)
autotb_opts="$autotb_opts -n $OPTARG" ;;
*)
echo "Usage: $0 [-x|-m] [-w] [-k] [-j] [-v] [-r] [-l libs] [-f frontend] [-s script] [-p cmdstring] verilog-files\n" >&2
echo "Usage: $0 [-x|-m] [-w] [-k] [-j] [-v] [-r] [-e] [-l libs] [-f frontend] [-s script] [-p cmdstring] verilog-files\n" >&2
exit 1
esac
done