diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2019-10-18 11:12:03 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2019-10-18 11:12:03 +0200 |
commit | 56f94826753c1f26c9026493a40ecef14806d779 (patch) | |
tree | a33f464eac21f9e91cb9e0c3249da05fe830ff4c /tests/arch/xilinx/run-test.sh | |
parent | c2ec7ca7031e2e9c655723fcdb3ce3cb83cc74b1 (diff) | |
download | yosys-56f94826753c1f26c9026493a40ecef14806d779.tar.gz yosys-56f94826753c1f26c9026493a40ecef14806d779.tar.bz2 yosys-56f94826753c1f26c9026493a40ecef14806d779.zip |
Fix path to yosys
Diffstat (limited to 'tests/arch/xilinx/run-test.sh')
-rwxr-xr-x | tests/arch/xilinx/run-test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/arch/xilinx/run-test.sh b/tests/arch/xilinx/run-test.sh index 46716f9a0..bf19b887d 100755 --- a/tests/arch/xilinx/run-test.sh +++ b/tests/arch/xilinx/run-test.sh @@ -6,7 +6,7 @@ for x in *.ys; do echo "all:: run-$x" echo "run-$x:" echo " @echo 'Running $x..'" - echo " @../../yosys -ql ${x%.ys}.log -w 'Yosys has only limited support for tri-state logic at the moment.' $x" + echo " @../../../yosys -ql ${x%.ys}.log -w 'Yosys has only limited support for tri-state logic at the moment.' $x" done for s in *.sh; do if [ "$s" != "run-test.sh" ]; then |