diff options
author | Clifford Wolf <clifford@clifford.at> | 2019-02-21 18:46:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-21 18:46:58 +0100 |
commit | 310b0a0ffa5ca48650c788c77eee0c8b91aa6bad (patch) | |
tree | 3c42aaef864ce9ec31e2a9d57d52e2475e1470a2 /tests | |
parent | 31fea5eb33a5f2feef65b38df869fed217323fb6 (diff) | |
parent | 8e789da74c6702ededc668e3dbd899de8d0c2821 (diff) | |
download | yosys-310b0a0ffa5ca48650c788c77eee0c8b91aa6bad.tar.gz yosys-310b0a0ffa5ca48650c788c77eee0c8b91aa6bad.tar.bz2 yosys-310b0a0ffa5ca48650c788c77eee0c8b91aa6bad.zip |
Merge pull request #821 from eddiehung/dff_init
Revert "Add -B option to autotest.sh to append to backend_opts"
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/tools/autotest.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/tools/autotest.sh b/tests/tools/autotest.sh index 6fdd1e80a..218edf931 100755 --- a/tests/tools/autotest.sh +++ b/tests/tools/autotest.sh @@ -28,7 +28,7 @@ if [ ! -f $toolsdir/cmp_tbdata -o $toolsdir/cmp_tbdata.c -nt $toolsdir/cmp_tbdat ( set -ex; ${CC:-gcc} -Wall -o $toolsdir/cmp_tbdata $toolsdir/cmp_tbdata.c; ) || exit 1 fi -while getopts xmGl:wkjvref:s:p:n:S:I:B:-: opt; do +while getopts xmGl:wkjvref:s:p:n:S:I:-: opt; do case "$opt" in x) use_xsim=true ;; @@ -65,8 +65,6 @@ while getopts xmGl:wkjvref:s:p:n:S:I:B:-: opt; do include_opts="$include_opts -I $OPTARG" xinclude_opts="$xinclude_opts -i $OPTARG" minclude_opts="$minclude_opts +incdir+$OPTARG" ;; - B) - backend_opts="$backend_opts $OPTARG" ;; -) case "${OPTARG}" in xfirrtl) @@ -84,7 +82,7 @@ while getopts xmGl:wkjvref:s:p:n:S:I:B:-: opt; do ;; esac;; *) - echo "Usage: $0 [-x|-m] [-G] [-w] [-k] [-j] [-v] [-r] [-e] [-l libs] [-f frontend] [-s script] [-p cmdstring] [-n iters] [-S seed] [-I incdir] [-B backend_opt] [--xfirrtl FIRRTL test exclude file] [--firrtl2verilog command to generate verilog from firrtl] verilog-files\n" >&2 + echo "Usage: $0 [-x|-m] [-G] [-w] [-k] [-j] [-v] [-r] [-e] [-l libs] [-f frontend] [-s script] [-p cmdstring] [-n iters] [-S seed] [-I incdir] [--xfirrtl FIRRTL test exclude file] [--firrtl2verilog command to generate verilog from firrtl] verilog-files\n" >&2 exit 1 esac done |