From 8c8b9021f5d43227f109bc746992215bf4bd2f1b Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 13 Dec 2023 17:59:39 +0100 Subject: [PATCH] tests/run-tests: disable nightly.TestCase on non-Linux until its ported --- tests/run-tests | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/run-tests b/tests/run-tests index d6c472a5..0dd750d8 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -174,6 +174,10 @@ for testcase in $WORKSPACE/tests/*.TestCase; do echo "skipping install.TestCase, its too troublesome in CI builds" continue fi + if [ $(uname) != "Linux" ] && [ $testcase == $WORKSPACE/tests/nightly.TestCase ]; then + echo "skipping nightly.TestCase, it currently only works GNU/Linux" + continue + fi $testcase done