aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2020-09-23 13:04:54 +0200
committerGitHub <noreply@github.com>2020-09-23 13:04:54 +0200
commit81348d2dce84573db39fa081c4549c2e472e49ce (patch)
tree34d6a7e2f50d6c90328c9d229f16b83cec08cc91
parent8fbb517118f3d281e5ff00a21f88e5f15d71746f (diff)
parent370243426ea1802d501b19b4b24d0d71542cecde (diff)
downloadyosys-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-xtests/aiger/run-test.sh2
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