diff options
| author | Clark Gaebel <[email protected]> | 2011-11-02 18:10:41 -0400 |
|---|---|---|
| committer | Clark Gaebel <[email protected]> | 2011-11-02 18:10:41 -0400 |
| commit | f873b84d6e91407cb6c9ea292d16baed6ec07779 (patch) | |
| tree | 95ac873a020ee1bc1f8fc4fc59a96fa3e23a8cd7 /src/test/util_tests.cpp | |
| parent | Cleaned up the critical section macros. (diff) | |
| download | discoin-f873b84d6e91407cb6c9ea292d16baed6ec07779.tar.xz discoin-f873b84d6e91407cb6c9ea292d16baed6ec07779.zip | |
Added simple critical section test cases.
Diffstat (limited to 'src/test/util_tests.cpp')
| -rw-r--r-- | src/test/util_tests.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/util_tests.cpp b/src/test/util_tests.cpp index 8afc85c50..8c8b99e1b 100644 --- a/src/test/util_tests.cpp +++ b/src/test/util_tests.cpp @@ -8,6 +8,25 @@ using namespace std; BOOST_AUTO_TEST_SUITE(util_tests) +BOOST_AUTO_TEST_CASE(util_criticalsection) +{ + CCriticalSection cs; + + do { + CRITICAL_BLOCK(cs) + break; + + BOOST_ERROR("break was swallowed!"); + } while(0); + + do { + TRY_CRITICAL_BLOCK(cs) + break; + + BOOST_ERROR("break was swallowed!"); + } while(0); +} + BOOST_AUTO_TEST_CASE(util_MedianFilter) { CMedianFilter<int> filter(5, 15); |