krb5/tests/upstream/test.sh
Michal Polovka 06f28789f7 krb5 1.21.1-7
- Use TMT for gating tests
- Add dedicated tests sub-package

Signed-off-by: Michal Polovka <mpolovka@redhat.com>
Co-authored-by: Julien Rische <jrische@redhat.com>
2025-03-25 13:41:29 +01:00

8 lines
105 B
Bash
Executable File

#!/bin/sh -eux
rc=0
for test_exec in /usr/libexec/krb5-tests-*
do
"$test_exec" || rc=1
done
exit $rc