start_test.sh: Abort tests on sles/12.4, php package is broken

This commit is contained in:
Johannes Meyer 2020-08-17 11:26:25 +02:00
parent faa7532467
commit 8b1d461f05

View File

@ -1,6 +1,12 @@
#!/bin/bash
# this script runs in the rpm_test environment
. /etc/os-release
if [ "$VERSION" == "12-SP4" ]; then
echo "Can't run test on sles/12.4, php packages are broken"
exit 0
fi
SCRIPT_HOME="$(dirname "$(readlink -f "$0")")"
if ! $SCRIPT_HOME/prepare_test.sh; then