mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
2c948fa025
Add a missing perl module dependency for the ptest packages and also improve the run-ptest script so that the error log is saved allowing easier debugging if this fails in future. (From OE-Core rev: fbb9c596b8e6a8a1260dd7aefddf138d20bf64df) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
264 B
Bash
17 lines
264 B
Bash
#!/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
|