From 36a3f04566880005e93bce5a751a11a4bb381c52 Mon Sep 17 00:00:00 2001 From: Ben McClelland Date: Fri, 15 Jan 2021 08:02:17 -0700 Subject: [PATCH] skip xfstests instead of fail if repo not specified --- tests/tests/xfstests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests/xfstests.sh b/tests/tests/xfstests.sh index 3d21ca39..5f0f35de 100644 --- a/tests/tests/xfstests.sh +++ b/tests/tests/xfstests.sh @@ -19,10 +19,10 @@ # make sure we have our config if [ -z "$T_XFSTESTS_REPO" ]; then - t_fail "xfstests requires -X repo" + t_skip "xfstests requires -X repo" fi if [ -z "$T_XFSTESTS_BRANCH" -a -z "$T_SKIP_CHECKOUT" ]; then - t_fail "xfstests requires -x branch" + t_skip "xfstests requires -x branch" fi t_quiet mkdir -p "$T_TMPDIR/mnt.scratch"