tests/run-tests: disable nightly.TestCase on non-Linux until its ported

This commit is contained in:
Hans-Christoph Steiner 2023-12-13 17:59:39 +01:00
parent 52f27aea75
commit 8c8b9021f5
1 changed files with 4 additions and 0 deletions

View File

@ -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