From 7ec6d0990b066240deb1a27f3a4d5467cf8c2b36 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 16 Feb 2017 23:07:58 +0300 Subject: Add ci script for running tests with gcc snapshot and asan/ubsan. Also add fedora tests with gcc snapshot and asan/ubsan (but disabled because gcc crashing) --- .gitlab-ci.yml | 24 ++++++++++++++++++++++ tools/ci/jobs/gccsnapshot_sanitize_tests.sh | 32 +++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100755 tools/ci/jobs/gccsnapshot_sanitize_tests.sh diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1762d9850..87f880abf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1365,6 +1365,30 @@ gcc-5_tarball: libxml2-dev libcurl4-gnutls-dev libpng-dev libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev +.fedora_gcc-snapshot_sanitize_tests: + stage: build + script: + - ./tools/ci/jobs/gccsnapshot_sanitize_tests.sh --without-dyecmd --without-manaplusgame + <<: *job-shared + image: fedora:rawhide + variables: + PMUPDATE: "dnf install --refresh -y @development-tools" + PMINSTALL: "dnf install -y bash tar findutils gcc gcc-c++ make libpng-devel libcurl-devel libxml2-devel gcc physfs-devel gcc SDL-devel SDL_net-devel SDL_image-devel SDL_ttf-devel SDL_mixer-devel SDL_gfx-devel zlib-devel gettext-devel automake autoconf valgrind libasan liblsan libubsan" + tags: + - docker + +.fedora_gcc-snapshot_sanitize_sdl2_tests: + stage: build + script: + - ./tools/ci/jobs/gccsnapshot_sanitize_tests.sh --with-sdl2 --without-dyecmd --without-manaplusgame + <<: *job-shared + image: fedora:rawhide + variables: + PMUPDATE: "dnf install --refresh -y @development-tools" + PMINSTALL: "dnf install -y bash tar findutils mesa-libGL-devel gcc gcc-c++ make libpng-devel libcurl-devel libxml2-devel gcc physfs-devel gcc SDL2-devel SDL2_net-devel SDL2_image-devel SDL2_ttf-devel SDL2_mixer-devel SDL2_gfx-devel zlib-devel gettext-devel automake autoconf valgrind libasan liblsan libubsan" + tags: + - docker + fedora_gcc-snapshot_tests: stage: build script: diff --git a/tools/ci/jobs/gccsnapshot_sanitize_tests.sh b/tools/ci/jobs/gccsnapshot_sanitize_tests.sh new file mode 100755 index 000000000..d33cf1988 --- /dev/null +++ b/tools/ci/jobs/gccsnapshot_sanitize_tests.sh @@ -0,0 +1,32 @@ +#!/bin/bash + +export CC=gcc +export CXX=g++ +export LOGFILE=gcc-snapshot.log +export PATH=/usr/lib/gcc-snapshot/bin:$PATH + +source ./tools/ci/scripts/init.sh + +export CXXFLAGS="-pedantic -ggdb3 -O2 -pipe -Wstrict-aliasing=2 \ +-Wstrict-overflow=1 -Wformat=1 -D_FORTIFY_SOURCE=2 \ +-fsanitize=address -fsanitize=undefined \ +-fsanitize=shift -fsanitize=integer-divide-by-zero -fsanitize=unreachable \ +-fsanitize=vla-bound -fsanitize=null -fsanitize=return \ +-fsanitize=signed-integer-overflow -fsanitize=bounds -fsanitize=alignment \ +-fsanitize=object-size -fsanitize=float-divide-by-zero -fsanitize=float-cast-overflow \ +-fsanitize=nonnull-attribute -fsanitize=returns-nonnull-attribute -fsanitize=bool \ +-fsanitize=enum -fsanitize=vptr -fsanitize=bounds-strict \ +-std=gnu++1z -Wformat=1 \ +-Wno-attributes" + +source ./tools/ci/flags/gcc6.sh + +do_init +run_configure --enable-unittests=yes $* +export SDL_VIDEODRIVER=dummy +export ASAN_OPTIONS=detect_leaks=0 +run_make_check + +source ./tools/ci/scripts/exit.sh + +exit 0 -- cgit v1.2.3-70-g09d2