diff options
author | Miodrag Milanović <mmicko@gmail.com> | 2020-09-23 13:04:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 13:04:54 +0200 |
commit | 81348d2dce84573db39fa081c4549c2e472e49ce (patch) | |
tree | 34d6a7e2f50d6c90328c9d229f16b83cec08cc91 | |
parent | 8fbb517118f3d281e5ff00a21f88e5f15d71746f (diff) | |
parent | 370243426ea1802d501b19b4b24d0d71542cecde (diff) | |
download | yosys-81348d2dce84573db39fa081c4549c2e472e49ce.tar.gz yosys-81348d2dce84573db39fa081c4549c2e472e49ce.tar.bz2 yosys-81348d2dce84573db39fa081c4549c2e472e49ce.zip |
Merge pull request #2384 from nakengelhardt/fix_2383
switch argument order to work with macOS getopt
-rwxr-xr-x | tests/aiger/run-test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/aiger/run-test.sh b/tests/aiger/run-test.sh index de7bc68cf..bcf2b964a 100755 --- a/tests/aiger/run-test.sh +++ b/tests/aiger/run-test.sh @@ -55,5 +55,5 @@ done for y in *.ys; do echo "Running $y." - ../../yosys $y -ql ${y%.*}.log + ../../yosys -ql ${y%.*}.log $y done |