diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-support/lzo/lzo/run-ptest | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-support/lzo/lzo/run-ptest b/meta/recipes-support/lzo/lzo/run-ptest index 2ea7745f70..6acb89fc1f 100644 --- a/meta/recipes-support/lzo/lzo/run-ptest +++ b/meta/recipes-support/lzo/lzo/run-ptest @@ -1,8 +1,33 @@ #!/bin/sh ./lzotest -mavail -n10 -q /etc/services +if [ $? -eq 0 ]; then + echo 'PASS: lzotest' +else + echo 'FAIL: lzotest' +fi LZOTEST=./lzotest /bin/sh -e "./check.sh" "/etc" ./align +if [ $? -eq 0 ]; then + echo 'PASS: align' +else + echo 'FAIL: align' +fi ./chksum +if [ $? -eq 0 ]; then + echo 'PASS: chksum' +else + echo 'FAIL: chksum' +fi ./simple +if [ $? -eq 0 ]; then + echo 'PASS: simple' +else + echo 'FAIL: simple' +fi ./testmini +if [ $? -eq 0 ]; then + echo 'PASS: testmini' +else + echo 'FAIL: testmini' +fi |