X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=travis-ci%2Fmanagers%2Ffedora.sh;h=742b7c94a47fccd6954186ed28dafb1e9ed7dd1d;hb=cdd116b4e1fe3e641e69fe76d69ee0ae3490fede;hp=3ee11050676b46bb5e7e7ccbfbfc5f34abc68556;hpb=731555601cba34de8af95528c82e04d790d56e90;p=thirdparty%2Fsystemd.git diff --git a/travis-ci/managers/fedora.sh b/travis-ci/managers/fedora.sh index 3ee11050676..742b7c94a47 100755 --- a/travis-ci/managers/fedora.sh +++ b/travis-ci/managers/fedora.sh @@ -9,13 +9,13 @@ # export CONT_NAME="my-fancy-container" # travis-ci/managers/fedora.sh SETUP RUN CLEANUP -PHASES=(${@:-SETUP RUN CLEANUP}) +PHASES=(${@:-SETUP RUN RUN_ASAN CLEANUP}) FEDORA_RELEASE="${FEDORA_RELEASE:-rawhide}" CONT_NAME="${CONT_NAME:-fedora-$FEDORA_RELEASE-$RANDOM}" DOCKER_EXEC="${DOCKER_EXEC:-docker exec -it $CONT_NAME}" DOCKER_RUN="${DOCKER_RUN:-docker run}" REPO_ROOT="${REPO_ROOT:-$PWD}" -ADDITIONAL_DEPS=(dnf-plugins-core python2 iputils hostname libasan) +ADDITIONAL_DEPS=(dnf-plugins-core python2 iputils hostname libasan python3-pyparsing python3-evdev libubsan) function info() { echo -e "\033[33;1m$1\033[0m" @@ -47,9 +47,17 @@ for phase in "${PHASES[@]}"; do # Build systemd $DOCKER_EXEC meson -Dslow-tests=true build $DOCKER_EXEC ninja -v -C build - # Run 'make check' $DOCKER_EXEC ninja -C build test ;; + RUN_ASAN) + $DOCKER_EXEC git clean -dxff + $DOCKER_EXEC meson -Db_sanitize=address,undefined build + $DOCKER_EXEC ninja -v -C build + $DOCKER_EXEC sh -c "printf '#!/bin/sh\necho The test is failing under ASan, skipping; exit 77' >/build/build/test-capability" + + # Never remove halt_on_error from UBSAN_OPTIONS. See https://github.com/systemd/systemd/commit/2614d83aa06592aedb. + $DOCKER_EXEC sh -c "UBSAN_OPTIONS=print_stacktrace=1:print_summary=1:halt_on_error=1 meson test --timeout-multiplier=3 -C ./build/ --print-errorlogs" + ;; CLEANUP) info "Cleanup phase" docker stop $CONT_NAME