summaryrefslogtreecommitdiff
path: root/tests/tools
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2013-07-09 14:31:57 +0200
committerClifford Wolf <clifford@clifford.at>2013-07-09 14:31:57 +0200
commit00a6c1d9a57da0e0b0fef07b2d618847ed93a9fd (patch)
tree149e564703234381d2c8f03e6698bede1735fd53 /tests/tools
parente8da3ea7b647f2c1eeba8a84590df7b05ca4e046 (diff)
Major redesign of expr width/sign detecion (verilog/ast frontend)
Diffstat (limited to 'tests/tools')
-rwxr-xr-xtests/tools/autotest.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tools/autotest.sh b/tests/tools/autotest.sh
index 6b22f902..e599db3a 100755
--- a/tests/tools/autotest.sh
+++ b/tests/tools/autotest.sh
@@ -51,7 +51,7 @@ create_ref() {
(
set +x
prefix="$2"
- xilver=$( ls -v /opt/Xilinx/ | tail -n1; )
+ xilver=$( ls -v /opt/Xilinx/ | grep '^[0-9]' | tail -n1; )
case "$( uname -m )" in
x86_64)
set --; . /opt/Xilinx/$xilver/ISE_DS/settings64.sh ;;
@@ -73,7 +73,7 @@ compile_and_run() {
(
set +x
files=( "$@" )
- xilver=$( ls -v /opt/Xilinx/ | tail -n1; )
+ xilver=$( ls -v /opt/Xilinx/ | grep '^[0-9]' | tail -n1; )
case "$( uname -m )" in
x86_64)
set --; . /opt/Xilinx/$xilver/ISE_DS/settings64.sh ;;