updated distribution specific changes
[profile/ivi/gsignond.git] / tools / run-tests.sh
1 #Environment variables for the tests
2 export G_MESSAGES_DEBUG=all
3 export SSO_STORAGE_PATH=/tmp/gsignond
4 export SSO_SECRET_PATH=/tmp/gsignond
5
6 rm -rf "$SSO_STORAGE_PATH"
7
8 make distclean;
9 autoreconf -fi;
10 ./configure --enable-dbus-type=session --enable-debug && \
11 make -j4 && make check && make distclean && \
12 ./configure --enable-dbus-type=system --enable-debug && \
13 make -j4 && make check && make distclean && \
14 ./configure --enable-dbus-type=p2p --enable-debug && \
15 make -j4 && make check && make distclean;
16