diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2014-08-27 08:57:10 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-28 15:12:44 +0100 |
commit | 36f6caae93670cc4086ada533e7c319d53433235 (patch) | |
tree | 7d3e28f25164021e66b066b046c211b861449569 /meta/recipes-devtools/insserv/files | |
parent | cdfc5150862dc3128bd85353f0263213e595778b (diff) | |
download | poky-36f6caae93670cc4086ada533e7c319d53433235.tar.gz |
run-ptest: fix bashism
These script use /bin/sh as the interpreter, but contains bashism:
recipes-devtools/insserv/files/run-ptest
recipes-devtools/quilt/quilt/run-ptest
recipes-devtools/tcltk/tcl/run-ptest
recipes-extended/gawk/gawk-4.1.1/run-ptest
recipes-support/beecrypt/beecrypt/run-ptest
Fixed:
"==" -> "=" (should be -eq when integer)
"&>log" -> ">log 2>&1"
And quilt's test scripts requires bash, add bash to RDEPENDS_quilt-ptest
(From OE-Core rev: 70c6e0b84d3e17807cbea0677df2f0772a284130)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/insserv/files')
-rw-r--r-- | meta/recipes-devtools/insserv/files/run-ptest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/insserv/files/run-ptest b/meta/recipes-devtools/insserv/files/run-ptest index 495d1551c2..4a6da3030a 100644 --- a/meta/recipes-devtools/insserv/files/run-ptest +++ b/meta/recipes-devtools/insserv/files/run-ptest | |||
@@ -11,7 +11,7 @@ output() { | |||
11 | } | 11 | } |
12 | 12 | ||
13 | for i in test_simple_sequence test_undetected_loop; \ | 13 | for i in test_simple_sequence test_undetected_loop; \ |
14 | do $i &>/dev/null ; output; \ | 14 | do $i >/dev/null 2>&1; output; \ |
15 | done | 15 | done |
16 | 16 | ||
17 | rm -rf ${tmpdir} | 17 | rm -rf ${tmpdir} |