mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 21:24:00 +00:00
Sync SmallBitVector with BitVector. Add unit tests for the missing methods.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186123 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -357,5 +357,41 @@ TYPED_TEST(BitVectorTest, RangeOps) {
|
||||
EXPECT_TRUE( E.test(32));
|
||||
EXPECT_FALSE(E.test(33));
|
||||
}
|
||||
|
||||
TYPED_TEST(BitVectorTest, CompoundTestReset) {
|
||||
TypeParam A(50, true);
|
||||
TypeParam B(50, false);
|
||||
|
||||
TypeParam C(100, true);
|
||||
TypeParam D(100, false);
|
||||
|
||||
EXPECT_FALSE(A.test(A));
|
||||
EXPECT_TRUE(A.test(B));
|
||||
EXPECT_FALSE(A.test(C));
|
||||
EXPECT_TRUE(A.test(D));
|
||||
EXPECT_FALSE(B.test(A));
|
||||
EXPECT_FALSE(B.test(B));
|
||||
EXPECT_FALSE(B.test(C));
|
||||
EXPECT_FALSE(B.test(D));
|
||||
EXPECT_TRUE(C.test(A));
|
||||
EXPECT_TRUE(C.test(B));
|
||||
EXPECT_FALSE(C.test(C));
|
||||
EXPECT_TRUE(C.test(D));
|
||||
|
||||
A.reset(B);
|
||||
A.reset(D);
|
||||
EXPECT_TRUE(A.all());
|
||||
A.reset(A);
|
||||
EXPECT_TRUE(A.none());
|
||||
A.set();
|
||||
A.reset(C);
|
||||
EXPECT_TRUE(A.none());
|
||||
A.set();
|
||||
|
||||
C.reset(A);
|
||||
EXPECT_EQ(50, C.find_first());
|
||||
C.reset(C);
|
||||
EXPECT_TRUE(C.none());
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user