summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/strace/strace/run-ptest
blob: 86daed922013aecd3196a2d2464d90725f7aff5b (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -u

export TIMEOUT_DURATION=240
make -B -C tests -k test-suite.log
res=$?
if [ $res -ne 0 ]; then
    cat tests/test-suite.log
fi
exit $res