From 4ed491abd4be545980802b1ebcdc7cd6faebaf4e Mon Sep 17 00:00:00 2001 From: Adam Saleh Date: Oct 04 2022 17:11:21 +0000 Subject: Make kvdo test run only on centos 8 --- diff --git a/tests/p_kvdo/kvdo_runtest.sh b/tests/p_kvdo/kvdo_runtest.sh index fbf442c..57b785e 100755 --- a/tests/p_kvdo/kvdo_runtest.sh +++ b/tests/p_kvdo/kvdo_runtest.sh @@ -26,6 +26,12 @@ # # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# only run on centos 8 for now +if [ "$centos_ver" -ne "8" ]; then + t_Log "non c8 => SKIPPING" + exit 0 +fi + # Include Beaker environment . /usr/share/beakerlib/beakerlib.sh || exit 1