tools: make the modified test script the only one
authorJussi Laako <jussi.laako@linux.intel.com>
Wed, 29 May 2013 11:40:23 +0000 (14:40 +0300)
committerJussi Laako <jussi.laako@linux.intel.com>
Wed, 29 May 2013 11:40:23 +0000 (14:40 +0300)
tools/run-tests-suse.sh [deleted file]
tools/run-tests.sh

diff --git a/tools/run-tests-suse.sh b/tools/run-tests-suse.sh
deleted file mode 100755 (executable)
index 0d271d4..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#Environment variables for the tests
-export G_MESSAGES_DEBUG=all
-export SSO_STORAGE_PATH=/tmp/gsignond
-export SSO_SECRET_PATH=/tmp/gsignond
-
-rm -rf "$SSO_STORAGE_PATH"
-
-make distclean;
-autoreconf -fi;
-./configure --enable-dbus-type=session --enable-debug && \
-make -j4 && make check && make distclean && \
-./configure --enable-dbus-type=system --enable-debug && \
-make -j4 && make check && make distclean && \
-./configure --enable-dbus-type=p2p --enable-debug && \
-make -j4 && make check && make distclean;
-
index c93f8b2..0d271d4 100755 (executable)
@@ -5,14 +5,12 @@ export SSO_SECRET_PATH=/tmp/gsignond
 
 rm -rf "$SSO_STORAGE_PATH"
 
-cd ..;
-
 make distclean;
-./autogen.sh --enable-dbus-type=session --enable-debug && \
+autoreconf -fi;
+./configure --enable-dbus-type=session --enable-debug && \
 make -j4 && make check && make distclean && \
-./autogen.sh --enable-dbus-type=system --enable-debug && \
+./configure --enable-dbus-type=system --enable-debug && \
 make -j4 && make check && make distclean && \
-./autogen.sh --enable-dbus-type=p2p --enable-debug && \
-make -j4 && make check;
+./configure --enable-dbus-type=p2p --enable-debug && \
+make -j4 && make check && make distclean;
 
-cd tools;