custom message for vm_update
[minix3.git] / test / testkyua.sh
blobebd7dc97f2bf0af3090dd186afd5429897b8c408
1 #!/bin/sh
2 # Execute and report the KYUA tests in TAP format
4 # Execute only if kyua is available
5 if which kyua 2>&1 > /dev/null
6 then
7 cd /usr/tests
9 kyua test 2>&1 > /dev/null
11 # If some test fails, kyua return status is 1, which is why we cannot
12 # activate this before.
13 set -e
15 # By default kyua omits successful tests.
16 kyua report-tap --results-filter=passed,skipped,xfail,broken,failed
18 exit 0
21 exit 1