Skip to content

Commit

Permalink
Add tests for r286139.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@286141 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
jrose-apple committed Nov 7, 2016
1 parent 59bbd3c commit fd34be2
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions unittests/ADT/StringRefTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,34 @@ std::ostream &operator<<(std::ostream &OS,

}

// Check that we can't accidentally assign a temporary std::string to a
// StringRef. (Unfortunately we can't make use of the same thing with
// constructors.)
//
// Disable this check under MSVC; even MSVC 2015 isn't consistent between
// std::is_assignable and actually writing such an assignment.
#if !defined(_MSC_VER)
static_assert(
!std::is_assignable<StringRef, std::string>::value,
"Assigning from prvalue std::string");
static_assert(
!std::is_assignable<StringRef, std::string &&>::value,
"Assigning from xvalue std::string");
static_assert(
std::is_assignable<StringRef, std::string &>::value,
"Assigning from lvalue std::string");
static_assert(
std::is_assignable<StringRef, const char *>::value,
"Assigning from prvalue C string");
static_assert(
std::is_assignable<StringRef, const char * &&>::value,
"Assigning from xvalue C string");
static_assert(
std::is_assignable<StringRef, const char * &>::value,
"Assigning from lvalue C string");
#endif


namespace {
TEST(StringRefTest, Construction) {
EXPECT_EQ("", StringRef());
Expand All @@ -40,6 +68,14 @@ TEST(StringRefTest, Construction) {
EXPECT_EQ("hello", StringRef(std::string("hello")));
}

TEST(StringRefTest, EmptyInitializerList) {
StringRef S = {};
EXPECT_TRUE(S.empty());

S = {};
EXPECT_TRUE(S.empty());
}

TEST(StringRefTest, Iteration) {
StringRef S("hello");
const char *p = "hello";
Expand Down

0 comments on commit fd34be2

Please sign in to comment.