]> code.ossystems Code Review - openembedded-core.git/commitdiff
connman_test.sh: show all processes when dumping ps
authorRoss Burton <ross.burton@intel.com>
Fri, 5 Apr 2013 15:35:30 +0000 (16:35 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 5 Apr 2013 16:35:34 +0000 (17:35 +0100)
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.

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/qemuimage-tests/tools/connman_test.sh

index 8ed8b8b4aa6402708c4f905550cd7e41f6d8bbee..4c1e2f558e2db0e89af176fb37f6260638d5edb2 100644 (file)
@@ -45,7 +45,7 @@ fi
 
 if [ $count -ne 1 ]; then
        Target_Info "connmand has issue when running in background, Pls, check the output of ps"
-       ${PS} | grep connmand
+       ${PS}
        exit 1
 fi