diff --git a/.travis.yml b/.travis.yml index 76ebe4588..484a7d871 100644 --- a/.travis.yml +++ b/.travis.yml @@ -82,7 +82,7 @@ script: - make $MAKEJOBS $GOAL || ( echo "Build failure. Verbose build follows." && make $GOAL V=1 ; false ) - export LD_LIBRARY_PATH=$TRAVIS_BUILD_DIR/depends/$HOST/lib - if [ "$RUN_TESTS" = "true" -a "$WINE" != "true" ]; then travis_wait 30 make $MAKEJOBS check VERBOSE=1; fi - - if [ "$RUN_TESTS" = "true" -a "$WINE" = "true" ]; then wine src/test/test_dash.exe --show_progress; fi + - if [ "$RUN_TESTS" = "true" -a "$WINE" = "true" ]; then wine src/test/test_dash.exe --log_level=test_suite; fi - if [ "$RUN_TESTS" = "true" ]; then qa/pull-tester/rpc-tests.py --coverage; fi after_script: - if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then (echo "Upload goes here. Something like: scp -r $BASE_OUTDIR server" || echo "upload failed"); fi diff --git a/src/test/coins_tests.cpp b/src/test/coins_tests.cpp index 90a01dd41..9cdf88710 100644 --- a/src/test/coins_tests.cpp +++ b/src/test/coins_tests.cpp @@ -190,6 +190,7 @@ BOOST_AUTO_TEST_CASE(coins_cache_simulation_test) // Once every 1000 iterations and at the end, verify the full cache. if (insecure_rand() % 1000 == 1 || i == NUM_SIMULATION_ITERATIONS - 1) { + BOOST_TEST_MESSAGE("coins_cache_simulation_test - verifying full cache"); for (auto it = result.begin(); it != result.end(); it++) { bool have = stack.back()->HaveCoin(it->first); const Coin& coin = stack.back()->AccessCoin(it->first); @@ -422,6 +423,7 @@ BOOST_AUTO_TEST_CASE(updatecoins_simulation_test) // Once every 1000 iterations and at the end, verify the full cache. if (insecure_rand() % 1000 == 1 || i == NUM_SIMULATION_ITERATIONS - 1) { + BOOST_TEST_MESSAGE("updatecoins_simulation_test - verifying full cache"); for (auto it = result.begin(); it != result.end(); it++) { bool have = stack.back()->HaveCoin(it->first); const Coin& coin = stack.back()->AccessCoin(it->first); diff --git a/src/test/prevector_tests.cpp b/src/test/prevector_tests.cpp index acbc23767..c67baf9b2 100644 --- a/src/test/prevector_tests.cpp +++ b/src/test/prevector_tests.cpp @@ -186,6 +186,7 @@ public: BOOST_AUTO_TEST_CASE(PrevectorTestInt) { for (int j = 0; j < 64; j++) { + BOOST_TEST_MESSAGE("PrevectorTestInt " << j); prevector_tester<8, int> test; for (int i = 0; i < 2048; i++) { int r = insecure_rand(); diff --git a/src/test/versionbits_tests.cpp b/src/test/versionbits_tests.cpp index c1498aef8..bf726a7e9 100644 --- a/src/test/versionbits_tests.cpp +++ b/src/test/versionbits_tests.cpp @@ -136,6 +136,8 @@ BOOST_FIXTURE_TEST_SUITE(versionbits_tests, TestingSetup) BOOST_AUTO_TEST_CASE(versionbits_test) { for (int i = 0; i < 64; i++) { + BOOST_TEST_MESSAGE("versionbits_test " << i); + // DEFINED -> FAILED VersionBitsTester().TestDefined() .Mine(1, TestTime(1), 0x100).TestDefined()