summaryrefslogtreecommitdiff
path: root/tools/run-tests.sh
blob: 0d271d4c579e2d0bd6c006d53c08f35330059a94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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;