diff options
author | Miodrag Milanović <mmicko@gmail.com> | 2019-09-27 17:37:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-27 17:37:55 +0200 |
commit | 4b15cf5f76e2226bbce1a73d1e0ff54fbf093fe8 (patch) | |
tree | c137f970f949117d04632158d73bfe1f9c146e6f /tests | |
parent | 7bde555481e4492bb0d133ea6fcec59af95fbbbe (diff) | |
parent | 7f0eec8270dbef06e3e6970af20dae2d6f89f6b9 (diff) | |
download | yosys-4b15cf5f76e2226bbce1a73d1e0ff54fbf093fe8.tar.gz yosys-4b15cf5f76e2226bbce1a73d1e0ff54fbf093fe8.tar.bz2 yosys-4b15cf5f76e2226bbce1a73d1e0ff54fbf093fe8.zip |
Merge pull request #1409 from YosysHQ/mmicko/fix_getopt_difference
Change order of parameters, to work on other OS
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/ice40/run-test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ice40/run-test.sh b/tests/ice40/run-test.sh index 2c72ca3a9..46716f9a0 100755 --- a/tests/ice40/run-test.sh +++ b/tests/ice40/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 |