From 8147752976bda4499863c3db9feee760cf0b9015 Mon Sep 17 00:00:00 2001 From: Nick Kledzik Date: Wed, 5 Feb 2014 22:22:56 +0000 Subject: Fix layering StringRef copy using BumpPtrAllocator. Now to copy a string into a BumpPtrAllocator and get a StringRef to the copy: StringRef myCopy = myStr.copy(myAllocator); git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200885 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/Support/AllocatorTest.cpp | 28 ---------------------------- 1 file changed, 28 deletions(-) (limited to 'unittests/Support') diff --git a/unittests/Support/AllocatorTest.cpp b/unittests/Support/AllocatorTest.cpp index 43ce0c86be..cb9fa43036 100644 --- a/unittests/Support/AllocatorTest.cpp +++ b/unittests/Support/AllocatorTest.cpp @@ -147,32 +147,4 @@ 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 Array1 = makeArrayRef(Words1, 4); - static const uint16_t Words2[] = { 11, 4003, 67, 64000, 13 }; - ArrayRef Array2 = makeArrayRef(Words2, 5); - ArrayRef Array1c = Alloc.allocateCopy(Array1); - ArrayRef 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 -- cgit v1.2.3