diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-09-30 15:15:14 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-09-30 15:15:14 -0700 |
commit | d992858318c9fae869a7d0d4ed046ed8c5ea5811 (patch) | |
tree | c99ba4550c154e34adf24935586f5293cce026d3 | |
parent | eeb86247c59f7ea7f98c05eaa456d0ebe041d149 (diff) | |
download | yosys-d992858318c9fae869a7d0d4ed046ed8c5ea5811.tar.gz yosys-d992858318c9fae869a7d0d4ed046ed8c5ea5811.tar.bz2 yosys-d992858318c9fae869a7d0d4ed046ed8c5ea5811.zip |
Move $x to end as per 7f0eec8
-rwxr-xr-x | tests/ecp5/run-test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ecp5/run-test.sh b/tests/ecp5/run-test.sh index 2c72ca3a9..46716f9a0 100755 --- a/tests/ecp5/run-test.sh +++ b/tests/ecp5/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 $x -w 'Yosys has only limited support for tri-state logic at the moment.'" + 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 |