Added simple critical section test cases.
authorClark Gaebel <cgaebel@csclub.uwaterloo.ca>
Wed, 2 Nov 2011 22:10:41 +0000 (18:10 -0400)
committerClark Gaebel <cgaebel@csclub.uwaterloo.ca>
Wed, 2 Nov 2011 22:10:41 +0000 (18:10 -0400)
src/test/util_tests.cpp

index 8afc85c..8c8b99e 100644 (file)
@@ -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);