Skip to content
Snippets Groups Projects
Commit 839a9301 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #6714: fixed hudson script

make check must be run from the toplevel of the daemon.
parent fe77ac04
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,14 @@ XML_RESULTS="cppunitresults.xml"
set -x
# Compile the plugins
pushd plugins
make distclean
./autogen.sh
./configure --prefix=/usr
make -j
popd
# Compile the daemon
pushd daemon
make distclean
......@@ -22,13 +30,13 @@ popd
make clean
make -j
make doc
make check
popd
# Run the unit tests for the daemon
pushd daemon/test
# Remove the previous XML test file
rm -rf $XML_RESULTS
make check
./run_tests.sh || exit 1
popd
......@@ -39,6 +47,7 @@ make distclean
./configure --prefix=/usr
make clean
make -j 1
make check
popd
# SUCCESS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment