summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorNick Kledzik <kledzik@apple.com>2014-01-28 19:21:27 +0000
committerNick Kledzik <kledzik@apple.com>2014-01-28 19:21:27 +0000
commit1c71a20f32b6c6af85fb26d56b26effe71c710b9 (patch)
tree90da4f83c000aff69d4a6bb33e2b1fced970a661 /unittests
parent3dcb2a2d92cca5d5ebac11fafab923520341b265 (diff)
downloadllvm-1c71a20f32b6c6af85fb26d56b26effe71c710b9.tar.gz
llvm-1c71a20f32b6c6af85fb26d56b26effe71c710b9.tar.bz2
llvm-1c71a20f32b6c6af85fb26d56b26effe71c710b9.tar.xz
Add BumpPtrAllocator::allocateCopy() utilities
Makes it easy to use BumpPtrAllocator to make a copy of StringRef strings. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200331 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Support/AllocatorTest.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/unittests/Support/AllocatorTest.cpp b/unittests/Support/AllocatorTest.cpp
index cb9fa43036..43ce0c86be 100644
--- a/unittests/Support/AllocatorTest.cpp
+++ b/unittests/Support/AllocatorTest.cpp
@@ -147,4 +147,32 @@ TEST(AllocatorTest, TestBigAlignment) {
EXPECT_LE(Ptr + 3000, ((uintptr_t)Slab) + Slab->Size);
}
+TEST(AllocatorTest, CopyStringRef) {
+ BumpPtrAllocator Alloc;
+ StringRef Str1 = "hello";
+ StringRef Str2 = "bye";
+ StringRef Str1c = Alloc.allocateCopy(Str1);
+ StringRef Str2c = Alloc.allocateCopy(Str2);
+ EXPECT_TRUE(Str1.equals(Str1c));
+ EXPECT_NE(Str1.data(), Str1c.data());
+ EXPECT_TRUE(Str2.equals(Str2c));
+ EXPECT_NE(Str2.data(), Str2c.data());
+}
+
+TEST(AllocatorTest, CopyArrayRef) {
+ BumpPtrAllocator Alloc;
+ static const uint16_t Words1[] = { 1, 4, 200, 37 };
+ ArrayRef<uint16_t> Array1 = makeArrayRef(Words1, 4);
+ static const uint16_t Words2[] = { 11, 4003, 67, 64000, 13 };
+ ArrayRef<uint16_t> Array2 = makeArrayRef(Words2, 5);
+ ArrayRef<uint16_t> Array1c = Alloc.allocateCopy(Array1);
+ ArrayRef<uint16_t> Array2c = Alloc.allocateCopy(Array2);
+ EXPECT_TRUE(Array1.equals(Array1c));
+ EXPECT_NE(Array1.data(), Array1c.data());
+ EXPECT_TRUE(Array2.equals(Array2c));
+ EXPECT_NE(Array2.data(), Array2c.data());
+}
+
+
+
} // anonymous namespace