X-Git-Url: http://plrg.eecs.uci.edu/git/?p=libcds.git;a=blobdiff_plain;f=test%2Funit%2Fintrusive-list%2Ftest_intrusive_list_hp.h;h=dab47f1304b47b583ef749243da937c8da8f2d37;hp=0d3936a2717ca9735c90f8e5f42b98fd4f51756a;hb=2402fb1beb25ec532cea91c8dfbb9425eb5bdf48;hpb=264957da64a35ca977799720ab436890d0dbf6f7 diff --git a/test/unit/intrusive-list/test_intrusive_list_hp.h b/test/unit/intrusive-list/test_intrusive_list_hp.h index 0d3936a2..dab47f13 100644 --- a/test/unit/intrusive-list/test_intrusive_list_hp.h +++ b/test/unit/intrusive-list/test_intrusive_list_hp.h @@ -55,7 +55,7 @@ namespace cds_test { typedef typename List::guarded_ptr guarded_ptr; - ASSERT_TRUE( l.empty() ); + ASSERT_TRUE( l.empty()); ASSERT_CONTAINER_SIZE( l, 0 ); guarded_ptr gp; @@ -73,7 +73,7 @@ namespace cds_test { ASSERT_FALSE( !gp ); EXPECT_EQ( gp->nKey, i.nKey ); EXPECT_EQ( gp->nVal, i.nVal ); - gp = l.get_with( other_item( i.nKey ), other_less() ); + gp = l.get_with( other_item( i.nKey ), other_less()); ASSERT_FALSE( !gp ); EXPECT_EQ( gp->nKey, i.nKey ); EXPECT_EQ( gp->nVal, i.nVal ); @@ -90,17 +90,17 @@ namespace cds_test { gp = l.extract( i ); EXPECT_TRUE( !gp ); - gp = l.extract_with( other_item( i ), other_less() ); + gp = l.extract_with( other_item( i ), other_less()); EXPECT_TRUE( !gp ); } - ASSERT_TRUE( l.empty() ); + ASSERT_TRUE( l.empty()); ASSERT_CONTAINER_SIZE( l, 0 ); List::gc::force_dispose(); for ( auto const& i : arr ) { EXPECT_EQ( i.s.nDisposeCount, 1 ); - EXPECT_FALSE( l.contains( i ) ); + EXPECT_FALSE( l.contains( i )); } } };