diff options
author | Mike Frysinger <vapier@gentoo.org> | 2013-06-24 01:59:10 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2013-06-24 01:59:10 +0000 |
commit | 19b7bc4bd8308a23cc7e17bd41904254bcca7a6f (patch) | |
tree | 67ecf29bf2efd01f7be99fdca39f74a16268e58a /sim | |
parent | 7f5884f775222f5885ebcd4d86c04a5c7002d4f1 (diff) | |
download | fsf-binutils-gdb-19b7bc4bd8308a23cc7e17bd41904254bcca7a6f.zip fsf-binutils-gdb-19b7bc4bd8308a23cc7e17bd41904254bcca7a6f.tar.gz fsf-binutils-gdb-19b7bc4bd8308a23cc7e17bd41904254bcca7a6f.tar.bz2 |
sim: bfin: run-tests.sh: fix typo in usage exit
Diffstat (limited to 'sim')
-rw-r--r-- | sim/testsuite/sim/bfin/ChangeLog | 4 | ||||
-rw-r--r-- | sim/testsuite/sim/bfin/run-tests.sh | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/sim/testsuite/sim/bfin/ChangeLog b/sim/testsuite/sim/bfin/ChangeLog index 81cedaf..570cf0c 100644 --- a/sim/testsuite/sim/bfin/ChangeLog +++ b/sim/testsuite/sim/bfin/ChangeLog @@ -1,5 +1,9 @@ 2013-06-23 Mike Frysinger <vapier@gentoo.org> + * run-tests.sh (usage): Fix typo in exit. + +2013-06-23 Mike Frysinger <vapier@gentoo.org> + * se_all32bitopcodes.S (se_all_next_insn): Skip debug insn opcodes. 2013-06-23 Mike Frysinger <vapier@gentoo.org> diff --git a/sim/testsuite/sim/bfin/run-tests.sh b/sim/testsuite/sim/bfin/run-tests.sh index 34a490c..c5ee777 100644 --- a/sim/testsuite/sim/bfin/run-tests.sh +++ b/sim/testsuite/sim/bfin/run-tests.sh @@ -12,7 +12,7 @@ usage() { -rh <ip> Run on board ip -j <num> Num jobs to run EOF - exit ${0:-1} + exit ${1:-1} } : ${MAKE:=make} |