1
0
mirror of https://github.com/systemd/systemd synced 2026-03-15 17:44:49 +01:00

Compare commits

..

No commits in common. "39f1bdecc20daae6a659a24408914b78bd65e423" and "35a48d4b9a4a73e18ef883d0eafee754c901db6f" have entirely different histories.

2 changed files with 5 additions and 4 deletions

View File

@ -65,6 +65,9 @@ BuildPackages=
Packages= Packages=
gdb gdb
# libfido2 + libzstd can be dropped once the Fedora RPM gets a dependency on them
libfido2
libzstd
nano nano
# procps-ng provides a set of useful utilies (ps, free, etc) # procps-ng provides a set of useful utilies (ps, free, etc)
procps-ng procps-ng

View File

@ -60,19 +60,17 @@ pass_deny_list() {
return 0 return 0
} }
SELECTED_TESTS="${SELECTED_TESTS:-TEST-??-*}"
# Let's always do the cleaning operation first, because it destroys the image # Let's always do the cleaning operation first, because it destroys the image
# cache. # cache.
if [ $CLEAN = 1 ]; then if [ $CLEAN = 1 ]; then
for TEST in $SELECTED_TESTS; do for TEST in TEST-??-* ; do
( set -x ; make -C "$TEST" clean ) ( set -x ; make -C "$TEST" clean )
done done
fi fi
# Run actual tests (if requested) # Run actual tests (if requested)
if [[ $args =~ [a-z] ]]; then if [[ $args =~ [a-z] ]]; then
for TEST in $SELECTED_TESTS; do for TEST in TEST-??-* ; do
COUNT=$(($COUNT+1)) COUNT=$(($COUNT+1))
pass_deny_list $TEST || continue pass_deny_list $TEST || continue