Skip to content

Commit

Permalink
test: Disable mockforward scheduler unit test for now
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoFalke authored and dagurval committed Oct 28, 2020
1 parent cd7a521 commit f22ed05
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/test/scheduler_tests.cpp
Expand Up @@ -228,7 +228,9 @@ BOOST_AUTO_TEST_CASE(singlethreadedscheduler_ordered) {
BOOST_CHECK_EQUAL(counter2, 100);
}

BOOST_AUTO_TEST_CASE(mockforward) {
/* disabled for now. See discussion in https://github.com/bitcoin/bitcoin/pull/18174
BOOST_AUTO_TEST_CASE(mockforward)
{
CScheduler scheduler;
int counter{0};
Expand Down Expand Up @@ -271,5 +273,6 @@ BOOST_AUTO_TEST_CASE(mockforward) {
// should be between 2 & 3 minutes from now
BOOST_CHECK(delta > 2 * 60 && delta < 3 * 60);
}
*/

BOOST_AUTO_TEST_SUITE_END()

0 comments on commit f22ed05

Please sign in to comment.