summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-11-12 16:38:18 +0300
committerAndrei Karas <akaras@inbox.ru>2011-11-12 16:38:18 +0300
commite83d1e8551d258fb4ce04d9aecc6f1cf3fcd0520 (patch)
tree52b79d065b58e96eb40575e7fc25fe9db92de017 /tests
parent97cf0211b1b2ff066f205d0306c615f895d700dd (diff)
downloadplus-e83d1e8551d258fb4ce04d9aecc6f1cf3fcd0520.tar.gz
plus-e83d1e8551d258fb4ce04d9aecc6f1cf3fcd0520.tar.bz2
plus-e83d1e8551d258fb4ce04d9aecc6f1cf3fcd0520.tar.xz
plus-e83d1e8551d258fb4ce04d9aecc6f1cf3fcd0520.zip
Move make test script to build directory.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/maketest.sh148
1 files changed, 0 insertions, 148 deletions
diff --git a/tests/maketest.sh b/tests/maketest.sh
deleted file mode 100755
index eeea5706e..000000000
--- a/tests/maketest.sh
+++ /dev/null
@@ -1,148 +0,0 @@
-#!/bin/sh
-
-dir=`pwd`
-export LANG=C
-
-#--enable-applebuild=yes
-#--without-librt
-
-echo start >make2.log
-
-autoreconf -i
-echo opengl+debug+guichan >>make2.log
-make clean 2>>make2.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>>make2.log
-
-autoreconf -i
-echo opengl+guichan >>make2.log
-make clean 2>>make2.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>>make2.log
-
-autoreconf -i
-echo opengl >>make2.log
-make clean 2>>make2.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>>make2.log
-
-autoreconf -i
-echo opengl+manaserv >>make2.log
-make clean 2>>make2.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>>make2.log
-
-autoreconf -i
-echo opengl+guichan+manaserv >>make2.log
-make clean 2>>make2.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>>make2.log
-
-autoreconf -i
-echo guichan >>make2.log
-make clean 2>>make2.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>>make2.log
-
-autoreconf -i
-echo "-" >>make2.log
-make clean 2>>make2.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>>make2.log
-
-autoreconf -i
-echo guichan+manaserv >>make2.log
-make clean 2>>make2.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>>make2.log
-
-autoreconf -i
-echo opengl+debug+guichan+portable >>make2.log
-make clean 2>>make2.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>>make2.log
-
-autoreconf -i
-echo opengl+guichan+portable+manaserv >>make2.log
-make clean 2>>make2.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>>make2.log