summaryrefslogtreecommitdiff
path: root/travis-ci
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2020-11-13 15:27:51 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2020-11-13 18:15:41 +0900
commit85a03fda7df4d45dc0c2414784b1da5991c39efa (patch)
tree33eaf9a0d83698a614ad4400025791ac1e69a2be /travis-ci
parent1763ef1d49cc1263b40f157060a61cdd6e91d3a4 (diff)
downloadsystemd-85a03fda7df4d45dc0c2414784b1da5991c39efa.tar.gz
ci: also set -Dfuzz-tests=true if -Dslow-tests=true
Diffstat (limited to 'travis-ci')
-rwxr-xr-xtravis-ci/managers/debian.sh2
-rwxr-xr-xtravis-ci/managers/fedora.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/travis-ci/managers/debian.sh b/travis-ci/managers/debian.sh
index ab8a5b5fb8..558a55a0a1 100755
--- a/travis-ci/managers/debian.sh
+++ b/travis-ci/managers/debian.sh
@@ -61,7 +61,7 @@ for phase in "${PHASES[@]}"; do
ENV_VARS="-e CC=clang -e CXX=clang++"
MESON_ARGS="--optimization=1"
fi
- docker exec $ENV_VARS -it $CONT_NAME meson --werror -Dtests=unsafe -Dslow-tests=true -Dsplit-usr=true -Dman=true $MESON_ARGS build
+ docker exec $ENV_VARS -it $CONT_NAME meson --werror -Dtests=unsafe -Dslow-tests=true -Dfuzz-tests=true -Dsplit-usr=true -Dman=true $MESON_ARGS build
$DOCKER_EXEC ninja -v -C build
docker exec -e "TRAVIS=$TRAVIS" -it $CONT_NAME ninja -C build test
;;
diff --git a/travis-ci/managers/fedora.sh b/travis-ci/managers/fedora.sh
index 3a917564ed..463696a32e 100755
--- a/travis-ci/managers/fedora.sh
+++ b/travis-ci/managers/fedora.sh
@@ -83,12 +83,12 @@ for phase in "${PHASES[@]}"; do
RUN)
info "Run phase"
# Build systemd
- $DOCKER_EXEC meson --werror -Dtests=unsafe -Dslow-tests=true build
+ $DOCKER_EXEC meson --werror -Dtests=unsafe -Dslow-tests=true -Dfuzz-tests=true build
$DOCKER_EXEC ninja -v -C build
$DOCKER_EXEC ninja -C build test
;;
RUN_CLANG)
- docker exec -e CC=clang -e CXX=clang++ -it $CONT_NAME meson --werror -Dtests=unsafe -Dslow-tests=true -Dman=true build
+ docker exec -e CC=clang -e CXX=clang++ -it $CONT_NAME meson --werror -Dtests=unsafe -Dslow-tests=true -Dfuzz-tests=true -Dman=true build
$DOCKER_EXEC ninja -v -C build
$DOCKER_EXEC ninja -C build test
;;