diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-07-09 19:00:10 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-07-09 19:00:10 +0200 |
commit | 618b2ac994360de4ffc9299aecb104a5bf5ba721 (patch) | |
tree | eab20d78333bf2d266bb3d6b62738299f871525b /tests/tools/autotest.sh | |
parent | 7daeee340a7edad3f4450e1392f8bad8d8b9cb7c (diff) | |
parent | 00a6c1d9a57da0e0b0fef07b2d618847ed93a9fd (diff) |
Merge branch 'master' of github.com:cliffordwolf/yosys
Diffstat (limited to 'tests/tools/autotest.sh')
-rwxr-xr-x | tests/tools/autotest.sh | 4 |
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 ;; |