aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/ADT/SparseBitVectorTest.cpp
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@google.com>2009-07-25 00:33:57 +0000
committerJeffrey Yasskin <jyasskin@google.com>2009-07-25 00:33:57 +0000
commitf4e1db1722fa1c999bfe0cc16c7d7bf29f36ade2 (patch)
tree7490623c6dba4657505225a31013708bcd7486b2 /llvm/unittests/ADT/SparseBitVectorTest.cpp
parentf3a1fce8ae411ea7135bc48495e09538d492929e (diff)
downloadllvm-f4e1db1722fa1c999bfe0cc16c7d7bf29f36ade2.zip
llvm-f4e1db1722fa1c999bfe0cc16c7d7bf29f36ade2.tar.gz
llvm-f4e1db1722fa1c999bfe0cc16c7d7bf29f36ade2.tar.bz2
Add a missing ilist_node.h #include to SparseBitVector, and add a very short
test for it. The test is by no means complete, but it tests the problem I was fixing. llvm-svn: 77025
Diffstat (limited to 'llvm/unittests/ADT/SparseBitVectorTest.cpp')
-rw-r--r--llvm/unittests/ADT/SparseBitVectorTest.cpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/llvm/unittests/ADT/SparseBitVectorTest.cpp b/llvm/unittests/ADT/SparseBitVectorTest.cpp
new file mode 100644
index 0000000..d8fc5ce
--- /dev/null
+++ b/llvm/unittests/ADT/SparseBitVectorTest.cpp
@@ -0,0 +1,36 @@
+//===- llvm/unittest/ADT/SparseBitVectorTest.cpp - SparseBitVector tests --===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include "llvm/ADT/SparseBitVector.h"
+#include "gtest/gtest.h"
+
+using namespace llvm;
+
+namespace {
+
+TEST(SparseBitVectorTest, TrivialOperation) {
+ SparseBitVector<> Vec;
+ EXPECT_EQ(0U, Vec.count());
+ EXPECT_FALSE(Vec.test(17));
+ Vec.set(5);
+ EXPECT_TRUE(Vec.test(5));
+ EXPECT_FALSE(Vec.test(17));
+ Vec.reset(6);
+ EXPECT_TRUE(Vec.test(5));
+ EXPECT_FALSE(Vec.test(6));
+ Vec.reset(5);
+ EXPECT_FALSE(Vec.test(5));
+ EXPECT_TRUE(Vec.test_and_set(17));
+ EXPECT_FALSE(Vec.test_and_set(17));
+ EXPECT_TRUE(Vec.test(17));
+ Vec.clear();
+ EXPECT_FALSE(Vec.test(17));
+}
+
+}