- 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>
8 lines
105 B
Bash
Executable File
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
|