summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-02-13 17:47:30 +0300
committerAndrei Karas <akaras@inbox.ru>2017-02-13 17:47:30 +0300
commit2416d2d23197e6291358fc40e32f7af15e7b5fa4 (patch)
treeacb52b99ba7a08020a734931e8774ef92606fea6
parentee0ec6535de5b3b9fef83af96de7f72dece0f8b1 (diff)
downloadplus-2416d2d23197e6291358fc40e32f7af15e7b5fa4.tar.gz
plus-2416d2d23197e6291358fc40e32f7af15e7b5fa4.tar.bz2
plus-2416d2d23197e6291358fc40e32f7af15e7b5fa4.tar.xz
plus-2416d2d23197e6291358fc40e32f7af15e7b5fa4.zip
Add ci script for run tests with gcc snapshot.
-rwxr-xr-xtools/ci/jobs/gccsnapshot.sh2
-rwxr-xr-xtools/ci/jobs/gccsnapshot_sdl2.sh2
-rwxr-xr-xtools/ci/jobs/gccsnapshot_tests.sh24
3 files changed, 26 insertions, 2 deletions
diff --git a/tools/ci/jobs/gccsnapshot.sh b/tools/ci/jobs/gccsnapshot.sh
index 6c5e9d106..207f963b2 100755
--- a/tools/ci/jobs/gccsnapshot.sh
+++ b/tools/ci/jobs/gccsnapshot.sh
@@ -15,7 +15,7 @@ export CXXFLAGS="-pedantic -ggdb3 -O2 -pipe -Wstrict-aliasing=2 \
source ./tools/ci/flags/gccsnapshot.sh
do_init
-run_configure --enable-werror
+run_configure --enable-werror $*
run_make
source ./tools/ci/scripts/exit.sh
diff --git a/tools/ci/jobs/gccsnapshot_sdl2.sh b/tools/ci/jobs/gccsnapshot_sdl2.sh
index 7c33d3179..7a46b6b81 100755
--- a/tools/ci/jobs/gccsnapshot_sdl2.sh
+++ b/tools/ci/jobs/gccsnapshot_sdl2.sh
@@ -15,7 +15,7 @@ export CXXFLAGS="-pedantic -ggdb3 -O2 -pipe -Wstrict-aliasing=2 \
source ./tools/ci/flags/gccsnapshot.sh
do_init
-run_configure --enable-werror --with-sdl2
+run_configure --enable-werror --with-sdl2 $*
run_make
source ./tools/ci/scripts/exit.sh
diff --git a/tools/ci/jobs/gccsnapshot_tests.sh b/tools/ci/jobs/gccsnapshot_tests.sh
new file mode 100755
index 000000000..1d603e08a
--- /dev/null
+++ b/tools/ci/jobs/gccsnapshot_tests.sh
@@ -0,0 +1,24 @@
+#!/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 \
+-std=gnu++1z -Wformat=1 \
+-Wno-attributes"
+
+source ./tools/ci/flags/gcc6.sh
+
+do_init
+run_configure --enable-unittests=yes $*
+export SDL_VIDEODRIVER=dummy
+run_make_check
+
+source ./tools/ci/scripts/exit.sh
+
+exit 0