summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-05-26 21:08:36 +0300
committerAndrei Karas <akaras@inbox.ru>2015-05-26 22:43:41 +0300
commite4196b3c4911bf021ec5da2bd65ff8ca0c66e7e7 (patch)
tree223f9b5f9ec1299125e59da65cc62ea85ab915b2 /build
parent055345145f35286b3f45ed05d5a80d118a1ab8f4 (diff)
downloadplus-e4196b3c4911bf021ec5da2bd65ff8ca0c66e7e7.tar.gz
plus-e4196b3c4911bf021ec5da2bd65ff8ca0c66e7e7.tar.bz2
plus-e4196b3c4911bf021ec5da2bd65ff8ca0c66e7e7.tar.xz
plus-e4196b3c4911bf021ec5da2bd65ff8ca0c66e7e7.zip
Replace gtest with catch. Add basic support for catch.
Also add make script for tests.
Diffstat (limited to 'build')
-rwxr-xr-xbuild/bmaketest53
1 files changed, 53 insertions, 0 deletions
diff --git a/build/bmaketest b/build/bmaketest
new file mode 100755
index 000000000..5cbee0a33
--- /dev/null
+++ b/build/bmaketest
@@ -0,0 +1,53 @@
+#!/bin/sh
+
+cd ..
+
+dir=`pwd`
+
+export CC=gcc-5
+export CXX=g++-5
+
+export LANG=C
+
+export CXXFLAGS="-ggdb3 -O2 -pipe -ffast-math \
+-funswitch-loops \
+-Wvariadic-macros -Wvla -Wredundant-decls \
+-Wpacked-bitfield-compat -Wtrampolines \
+-Wsuggest-attribute=noreturn -Wunused -Wstrict-aliasing=2 \
+-fstrict-aliasing -Wunreachable-code -Wabi \
+-Wvolatile-register-var -Winvalid-pch -Wredundant-decls \
+-Wnormalized=nfkc -Wmissing-format-attribute -Wmissing-noreturn \
+-Wswitch-default -Wsign-promo -Waddress -Wmissing-declarations \
+-Wctor-dtor-privacy -Wstrict-null-sentinel -Wlogical-op \
+-Wcast-align -Wpointer-arith -Wundef \
+-Wmissing-include-dirs -Winit-self -pedantic -Wall \
+-Wpacked -Wextra -fstrict-overflow -Wstrict-overflow=1 -Wunknown-pragmas \
+-Wwrite-strings -Wstack-protector -Wshadow -Wunused-macros -Wsynth \
+-Wbuiltin-macro-redefined -Wctor-dtor-privacy -Wdeprecated \
+-Wendif-labels -Wformat=1 -Wimport -Wnon-virtual-dtor -Wpsabi \
+-Wsign-promo -Wwrite-strings -D_FORTIFY_SOURCE=2 -Wc++11-compat -std=c++0x \
+-Wdelete-non-virtual-dtor -Wmaybe-uninitialized -Wunused-local-typedefs \
+-Wvector-operation-performance -Wfree-nonheap-object -Winvalid-memory-model \
+-Wnarrowing -Wzero-as-null-pointer-constant -funsafe-loop-optimizations \
+-Wabi-tag -Waggressive-loop-optimizations -Wclobbered -Wempty-body \
+-Wignored-qualifiers -Wliteral-suffix -Wmissing-field-initializers \
+-Woverlength-strings -Wpedantic -Wsign-compare -Wsizeof-pointer-memaccess \
+-Wsuggest-attribute=format -Wtype-limits -Wuninitialized \
+-Wunused-but-set-parameter -Wunused-but-set-variable -Wunused-function \
+-Wunused-label -Wunused-parameter -Wunused-value -Wunused-variable \
+-fsched-pressure \
+-Wconditionally-supported -Wdate-time -Woverloaded-virtual \
+-fno-var-tracking"
+
+autoreconf -i
+./configure --prefix=$dir/run \
+--datadir=$dir/run/share/games \
+--bindir=$dir/run/bin \
+--mandir=$dir/run/share/man \
+--enable-unittests
+
+cd po
+make -j8 update-gmo 2>../build/make1.log
+cd ..
+make -j8 check 2>build/make2.log
+