summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2013-04-05 16:35:30 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-05 17:36:34 +0100
commit3328d7c3f7140f4fcfb1491bbd1855788dac6410 (patch)
treefb11bb27156b7d488bafa5d2977d7b91b11df98b /scripts
parent9e9ea0a40afbea66e35deb6e28dfeb726a3e62c0 (diff)
downloadpoky-3328d7c3f7140f4fcfb1491bbd1855788dac6410.tar.gz
connman_test.sh: show all processes when dumping ps
We know the grep failed because the error case is being executed, so don't do the grep again when attempting to help diagnose the problem, as seeing the full process list might be useful. (From OE-Core rev: 6ee4a2ba6ee9633c1fa08d3b162d6d00da307798) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/qemuimage-tests/tools/connman_test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qemuimage-tests/tools/connman_test.sh b/scripts/qemuimage-tests/tools/connman_test.sh
index 8ed8b8b4aa..4c1e2f558e 100644
--- a/scripts/qemuimage-tests/tools/connman_test.sh
+++ b/scripts/qemuimage-tests/tools/connman_test.sh
@@ -45,7 +45,7 @@ fi
45 45
46if [ $count -ne 1 ]; then 46if [ $count -ne 1 ]; then
47 Target_Info "connmand has issue when running in background, Pls, check the output of ps" 47 Target_Info "connmand has issue when running in background, Pls, check the output of ps"
48 ${PS} | grep connmand 48 ${PS}
49 exit 1 49 exit 1
50fi 50fi
51 51