summaryrefslogtreecommitdiff
path: root/build/buildtest
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-02-11 18:32:53 +0300
committerAndrei Karas <akaras@inbox.ru>2012-02-11 18:32:53 +0300
commit1e255ec19ececda196874f751a81682169cf64c3 (patch)
treea972041a56d46ec4beb04141946b73091fbbca95 /build/buildtest
parentc14086d6a08fb2ea644eec9fafa0374604c98991 (diff)
downloadplus-1e255ec19ececda196874f751a81682169cf64c3.tar.gz
plus-1e255ec19ececda196874f751a81682169cf64c3.tar.bz2
plus-1e255ec19ececda196874f751a81682169cf64c3.tar.xz
plus-1e255ec19ececda196874f751a81682169cf64c3.zip
Add support for gtest framework.
Diffstat (limited to 'build/buildtest')
-rwxr-xr-xbuild/buildtest149
1 files changed, 149 insertions, 0 deletions
diff --git a/build/buildtest b/build/buildtest
new file mode 100755
index 000000000..61b20f0fe
--- /dev/null
+++ b/build/buildtest
@@ -0,0 +1,149 @@
+#!/bin/sh
+
+dir=`pwd`
+export LANG=C
+
+cd ..
+#--enable-applebuild=yes
+#--without-librt
+
+echo start >build/make.log
+
+autoreconf -i
+echo opengl+debug+guichan >>build/make.log
+make clean 2>>build/make.log
+./configure --prefix=$dir/run \
+--datadir=$dir/run/share/games \
+--bindir=$dir/run/bin \
+--mandir=$dir/run/share/man \
+--enable-memdebug=yes \
+--with-internalguichan=yes \
+--enable-tcmalloc=no \
+--enable-googleprofiler=no
+make -j5 2>>build/make.log
+
+autoreconf -i
+echo opengl+guichan >>build/make.log
+make clean 2>>build/make.log
+./configure --prefix=$dir/run \
+--datadir=$dir/run/share/games \
+--bindir=$dir/run/bin \
+--mandir=$dir/run/share/man \
+--enable-memdebug=no \
+--with-internalguichan=yes \
+--enable-tcmalloc=no \
+--enable-googleprofiler=no
+make -j5 2>>build/make.log
+
+autoreconf -i
+echo opengl >>build/make.log
+make clean 2>>build/make.log
+./configure --prefix=$dir/run \
+--datadir=$dir/run/share/games \
+--bindir=$dir/run/bin \
+--mandir=$dir/run/share/man \
+--enable-memdebug=no \
+--with-internalguichan=no \
+--enable-tcmalloc=no \
+--enable-googleprofiler=no
+make -j5 2>>build/make.log
+
+autoreconf -i
+echo opengl+manaserv >>build/make.log
+make clean 2>>build/make.log
+./configure --prefix=$dir/run \
+--datadir=$dir/run/share/games \
+--bindir=$dir/run/bin \
+--mandir=$dir/run/share/man \
+--enable-memdebug=no \
+--with-internalguichan=no \
+--enable-tcmalloc=no \
+--enable-googleprofiler=no \
+--enable-manaserv=yes
+make -j5 2>>build/make.log
+
+autoreconf -i
+echo opengl+guichan+manaserv >>build/make.log
+make clean 2>>build/make.log
+./configure --prefix=$dir/run \
+--datadir=$dir/run/share/games \
+--bindir=$dir/run/bin \
+--mandir=$dir/run/share/man \
+--enable-memdebug=no \
+--with-internalguichan=yes \
+--enable-tcmalloc=no \
+--enable-googleprofiler=no \
+--enable-manaserv=yes
+make -j5 2>>build/make.log
+
+autoreconf -i
+echo guichan >>build/make.log
+make clean 2>>build/make.log
+./configure --prefix=$dir/run \
+--datadir=$dir/run/share/games \
+--bindir=$dir/run/bin \
+--mandir=$dir/run/share/man \
+--enable-memdebug=no \
+--with-internalguichan=yes \
+--enable-tcmalloc=no \
+--enable-googleprofiler=no \
+--without-opengl
+make -j5 2>>build/make.log
+
+autoreconf -i
+echo "-" >>build/make.log
+make clean 2>>build/make.log
+./configure --prefix=$dir/run \
+--datadir=$dir/run/share/games \
+--bindir=$dir/run/bin \
+--mandir=$dir/run/share/man \
+--enable-memdebug=no \
+--with-internalguichan=no \
+--enable-tcmalloc=no \
+--enable-googleprofiler=no \
+--without-opengl
+make -j5 2>>build/make.log
+
+autoreconf -i
+echo guichan+manaserv >>build/make.log
+make clean 2>>build/make.log
+./configure --prefix=$dir/run \
+--datadir=$dir/run/share/games \
+--bindir=$dir/run/bin \
+--mandir=$dir/run/share/man \
+--enable-memdebug=no \
+--with-internalguichan=yes \
+--enable-tcmalloc=no \
+--enable-googleprofiler=no \
+--enable-manaserv=yes \
+--without-opengl
+make -j5 2>>build/make.log
+
+autoreconf -i
+echo opengl+debug+guichan+portable >>build/make.log
+make clean 2>>build/make.log
+./configure --prefix=$dir/run \
+--datadir=$dir/run/share/games \
+--bindir=$dir/run/bin \
+--mandir=$dir/run/share/man \
+--enable-memdebug=yes \
+--with-internalguichan=yes \
+--enable-tcmalloc=no \
+--enable-googleprofiler=no \
+--enable-portable=yes
+make -j5 2>>build/make.log
+
+autoreconf -i
+echo opengl+guichan+portable+manaserv >>build/make.log
+make clean 2>>build/make.log
+./configure --prefix=$dir/run \
+--datadir=$dir/run/share/games \
+--bindir=$dir/run/bin \
+--mandir=$dir/run/share/man \
+--enable-memdebug=no \
+--with-internalguichan=yes \
+--enable-tcmalloc=no \
+--enable-googleprofiler=no \
+--enable-manaserv=yes \
+--enable-portable=yes
+make -j5 2>>build/make.log