blob: 6ed02577c320715c61557874b0235a7ce4f5012a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#Environment variables for the tests
export G_MESSAGES_DEBUG=all
export SSO_STORAGE_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;
|