diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-24 07:04:27 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-24 07:04:27 +0000 |
commit | afcf5b30cbc2f97e11de1978995e3992eff15c30 (patch) | |
tree | b3f41640c3752fac28cdc5ccc7a960690778b498 /llvm/unittests/ADT/TwineTest.cpp | |
parent | 963cc31583f7b80b0c8af6c0de16ee196e7de5d9 (diff) | |
download | llvm-afcf5b30cbc2f97e11de1978995e3992eff15c30.zip llvm-afcf5b30cbc2f97e11de1978995e3992eff15c30.tar.gz llvm-afcf5b30cbc2f97e11de1978995e3992eff15c30.tar.bz2 |
Add Twine ADT.
- Not currently used.
llvm-svn: 76956
Diffstat (limited to 'llvm/unittests/ADT/TwineTest.cpp')
-rw-r--r-- | llvm/unittests/ADT/TwineTest.cpp | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/llvm/unittests/ADT/TwineTest.cpp b/llvm/unittests/ADT/TwineTest.cpp new file mode 100644 index 0000000..50fdd2e --- /dev/null +++ b/llvm/unittests/ADT/TwineTest.cpp @@ -0,0 +1,63 @@ +//===- TwineTest.cpp - Twine unit tests -----------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "gtest/gtest.h" +#include "llvm/ADT/Twine.h" +#include "llvm/Support/raw_ostream.h" +using namespace llvm; + +namespace { + +std::string repr(const Twine &Value) { + std::string res; + llvm::raw_string_ostream OS(res); + Value.printRepr(OS); + return OS.str(); +} + +TEST(TwineTest, Construction) { + EXPECT_EQ("", Twine().str()); + EXPECT_EQ("hi", Twine("hi").str()); + EXPECT_EQ("hi", Twine(std::string("hi")).str()); + EXPECT_EQ("hi", Twine(StringRef("hi")).str()); + EXPECT_EQ("hi", Twine(StringRef(std::string("hi"))).str()); + EXPECT_EQ("hi", Twine(StringRef("hithere", 2)).str()); +} + +TEST(TwineTest, Concat) { + // Check verse repr, since we care about the actual representation not just + // the result. + + // Concat with null. + EXPECT_EQ("(Twine null empty)", + repr(Twine("hi").concat(Twine::createNull()))); + EXPECT_EQ("(Twine null empty)", + repr(Twine::createNull().concat(Twine("hi")))); + + // Concat with empty. + EXPECT_EQ("(Twine cstring:\"hi\" empty)", + repr(Twine("hi").concat(Twine()))); + EXPECT_EQ("(Twine cstring:\"hi\" empty)", + repr(Twine().concat(Twine("hi")))); + + // Concatenation of unary ropes. + EXPECT_EQ("(Twine cstring:\"a\" cstring:\"b\")", + repr(Twine("a").concat(Twine("b")))); + + // Concatenation of other ropes. + EXPECT_EQ("(Twine rope:(Twine cstring:\"a\" cstring:\"b\") cstring:\"c\")", + repr(Twine("a").concat(Twine("b")).concat(Twine("c")))); + EXPECT_EQ("(Twine cstring:\"a\" rope:(Twine cstring:\"b\" cstring:\"c\"))", + repr(Twine("a").concat(Twine("b").concat(Twine("c"))))); +} + + // I suppose linking in the entire code generator to add a unit test to check + // the code size of the concat operation is overkill... :) + +} // end anonymous namespace |