diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-10-26 17:24:50 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-10-26 17:25:19 +0100 |
| commit | c8322ff7f7544ac38cdc8df89058f434bb1498e6 (patch) | |
| tree | f8e27f0bdda73b79a88877f5ac6f18a8f0fd6008 /src/test/alert_tests.cpp | |
| parent | Merge pull request #6566 (diff) | |
| parent | Use BOOST_CHECK_MESSAGE() rather than BOOST_CHECK() in alerts_tests.cpp and i... (diff) | |
| download | discoin-c8322ff7f7544ac38cdc8df89058f434bb1498e6.tar.xz discoin-c8322ff7f7544ac38cdc8df89058f434bb1498e6.zip | |
Merge pull request #6888
143d173 Use BOOST_CHECK_MESSAGE() rather than BOOST_CHECK() in alerts_tests.cpp and initialize strMiscWarning before calling PartitionCheck()." (Eric Lombrozo)
Diffstat (limited to 'src/test/alert_tests.cpp')
| -rw-r--r-- | src/test/alert_tests.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/alert_tests.cpp b/src/test/alert_tests.cpp index dd3c51d09..468eda1c9 100644 --- a/src/test/alert_tests.cpp +++ b/src/test/alert_tests.cpp @@ -217,10 +217,12 @@ BOOST_AUTO_TEST_CASE(PartitionAlert) // use them } + strMiscWarning = ""; + // Test 1: chain with blocks every nPowTargetSpacing seconds, // as normal, no worries: PartitionCheck(falseFunc, csDummy, &indexDummy[99], nPowTargetSpacing); - BOOST_CHECK(strMiscWarning.empty()); + BOOST_CHECK_MESSAGE(strMiscWarning.empty(), strMiscWarning); // Test 2: go 3.5 hours without a block, expect a warning: now += 3*60*60+30*60; |