FMF: Run tests together

This commit is contained in:
Justin Stephenson 2023-05-03 11:28:27 -04:00
parent c3616baaa2
commit ce70a6d4ee
3 changed files with 4 additions and 39 deletions

View file

@ -1,8 +1,6 @@
#!/bin/sh
set -eux
PLAN="$1"
# tests need cockpit's bots/ libraries and test infrastructure
cd $SOURCE
rm -f bots # common local case: existing bots symlink
@ -25,19 +23,10 @@ if [ "${TEST_OS#centos-}" != "$TEST_OS" ]; then
TEST_OS="${TEST_OS}-stream"
fi
# select subset of tests according to plan
TESTS="$(test/common/run-tests -l)"
case "$PLAN" in
system) TESTS="$(echo "$TESTS" | grep 'System$')" ;;
user) TESTS="$(echo "$TESTS" | grep 'User$')" ;;
other) TESTS="$(echo "$TESTS" | grep -vE '(System|User)$')" ;;
*) echo "Unknown test plan: $PLAN" >&2; exit 1 ;;
esac
EXCLUDES=""
RC=0
test/common/run-tests --nondestructive --machine 127.0.0.1:22 --browser 127.0.0.1:9090 $TESTS $EXCLUDES || RC=$?
test/common/run-tests --nondestructive --machine 127.0.0.1:22 --browser 127.0.0.1:9090 $EXCLUDES || RC=$?
echo $RC > "$LOGS/exitcode"
cp --verbose Test* "$LOGS" || true