summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/attr/acl/run-ptest
blob: 3af75c84fea41a025f40b7e558e83d65b0a0cb20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
#
#This script is used to run acl test suites

#umask 077

mkdir -p /tmp/acl-ptest/test
cp test/test.* /tmp/acl-ptest/test

set +e
make test-suite.log
exitcode=$?
if [ $exitcode -ne 0 -a -e test-suite.log ]; then
    cat test-suite.log
fi
exit $exitcode