commit | 9a22335980a1b69d9ffe9636bd9e4a032b9b968a | [log] [tgz] |
---|---|---|
author | Masayuki Igawa <igawa@mxs.nes.nec.co.jp> | Tue Jan 14 11:02:53 2014 +0900 |
committer | Masayuki Igawa <igawa@mxs.nes.nec.co.jp> | Tue Jan 14 11:15:20 2014 +0900 |
tree | bcd7f94a506d0bf1d7afa2c6b06912214d755c74 | |
parent | 9cc56849e469745baa18cdb252ec19bd6afba914 [diff] |
Fix an error when executing run_tests.sh In the recent commit I1473fe4da96aecd0b3b0bf3a3ec1e3e87039271b , the coverage option was introduced. But there are a few typos in the shell script. This commit fixes it. Change-Id: Iecdd72f730c0f0971424ca48e6f122481493b1ee Closes-Bug: #1268808
diff --git a/run_tests.sh b/run_tests.sh index 285b372..3f00453 100755 --- a/run_tests.sh +++ b/run_tests.sh
@@ -126,7 +126,7 @@ exit fi -if [$coverage -eq 1] ; then +if [ $coverage -eq 1 ]; then $testrargs = "--coverage $testrargs" fi