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

* #11848: hudson don't run tests twice

make check will run the tests itself
parent 791790ec
No related branches found
No related tags found
No related merge requests found
...@@ -60,17 +60,6 @@ function gen_doxygen { ...@@ -60,17 +60,6 @@ function gen_doxygen {
fi fi
} }
function launch_unit_test_daemon {
# Run the unit tests for the daemon
pushd daemon/test
# Remove the previous XML test file
rm -rf $XML_RESULTS
./run_tests.sh || exit 1
popd
}
function launch_functional_test_daemon { function launch_functional_test_daemon {
# Run the python functional tests for the daemon # Run the python functional tests for the daemon
...@@ -136,6 +125,8 @@ function build_daemon { ...@@ -136,6 +125,8 @@ function build_daemon {
if [ $DOXYGEN == 1 ]; then if [ $DOXYGEN == 1 ]; then
gen_doxygen gen_doxygen
fi fi
# Remove the previous XML test file
rm -rf $XML_RESULTS
# Compile unit tests # Compile unit tests
make check make check
popd popd
...@@ -204,7 +195,6 @@ done ...@@ -204,7 +195,6 @@ done
build_$BUILD build_$BUILD
if [ $TEST == 1 ]; then if [ $TEST == 1 ]; then
# launch_unit_test_daemon
launch_functional_test_daemon launch_functional_test_daemon
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment