aboutsummaryrefslogtreecommitdiff
path: root/src/test/scheduler_tests.cpp
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2018-08-28 10:19:18 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2018-08-28 10:22:28 +0200
commit4c3c9c38699360f93d3c52a01a90ff15ee5e1a62 (patch)
treeac87cf34c94b507f106ef07520986ea1747dcd20 /src/test/scheduler_tests.cpp
parent0df9b0aed23127acd12d9ed6a008c12be47b1cd9 (diff)
downloadbitcoin-4c3c9c38699360f93d3c52a01a90ff15ee5e1a62.tar.xz
Don't assert(...) with side effects
Diffstat (limited to 'src/test/scheduler_tests.cpp')
-rw-r--r--src/test/scheduler_tests.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/test/scheduler_tests.cpp b/src/test/scheduler_tests.cpp
index 2af0ab22da..3c63ad736a 100644
--- a/src/test/scheduler_tests.cpp
+++ b/src/test/scheduler_tests.cpp
@@ -138,11 +138,13 @@ BOOST_AUTO_TEST_CASE(singlethreadedscheduler_ordered)
// the callbacks should run in exactly the order in which they were enqueued
for (int i = 0; i < 100; ++i) {
queue1.AddToProcessQueue([i, &counter1]() {
- assert(i == counter1++);
+ bool expectation = i == counter1++;
+ assert(expectation);
});
queue2.AddToProcessQueue([i, &counter2]() {
- assert(i == counter2++);
+ bool expectation = i == counter2++;
+ assert(expectation);
});
}