summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-support/lzo/lzo/run-ptest25
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 @@
1#!/bin/sh 1#!/bin/sh
2 2
3./lzotest -mavail -n10 -q /etc/services 3./lzotest -mavail -n10 -q /etc/services
4if [ $? -eq 0 ]; then
5 echo 'PASS: lzotest'
6else
7 echo 'FAIL: lzotest'
8fi
4LZOTEST=./lzotest /bin/sh -e "./check.sh" "/etc" 9LZOTEST=./lzotest /bin/sh -e "./check.sh" "/etc"
5./align 10./align
11if [ $? -eq 0 ]; then
12 echo 'PASS: align'
13else
14 echo 'FAIL: align'
15fi
6./chksum 16./chksum
17if [ $? -eq 0 ]; then
18 echo 'PASS: chksum'
19else
20 echo 'FAIL: chksum'
21fi
7./simple 22./simple
23if [ $? -eq 0 ]; then
24 echo 'PASS: simple'
25else
26 echo 'FAIL: simple'
27fi
8./testmini 28./testmini
29if [ $? -eq 0 ]; then
30 echo 'PASS: testmini'
31else
32 echo 'FAIL: testmini'
33fi