blob: 3af75c84fea41a025f40b7e558e83d65b0a0cb20 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#!/bin/sh
Patrick Williamsc0f7c042017-02-23 20:41:17 -06002#
3#This script is used to run acl test suites
Patrick Williamsc124f4f2015-09-15 14:41:29 -05004
Patrick Williamsc0f7c042017-02-23 20:41:17 -06005#umask 077
6
Andrew Geissler82c905d2020-04-13 13:39:40 -05007mkdir -p /tmp/acl-ptest/test
8cp test/test.* /tmp/acl-ptest/test
Patrick Williamsc0f7c042017-02-23 20:41:17 -06009
Andrew Geisslerfc113ea2023-03-31 09:59:46 -050010set +e
Andrew Geissler82c905d2020-04-13 13:39:40 -050011make test-suite.log
Andrew Geisslerfc113ea2023-03-31 09:59:46 -050012exitcode=$?
13if [ $exitcode -ne 0 -a -e test-suite.log ]; then
14 cat test-suite.log
15fi
16exit $exitcode