diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-03-04 10:23:15 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-03-04 10:23:15 +0000 |
commit | dc2cada889b3bcf652fd8f356e2b96cea8e6e228 (patch) | |
tree | 28ff58a06f1ea4821edb10a7edc1dfce022801ae /llvm/unittests/ADT/HashingTest.cpp | |
parent | 23df81aabeb111d33a6e3c0c9a811198a2702823 (diff) | |
download | llvm-dc2cada889b3bcf652fd8f356e2b96cea8e6e228.zip llvm-dc2cada889b3bcf652fd8f356e2b96cea8e6e228.tar.gz llvm-dc2cada889b3bcf652fd8f356e2b96cea8e6e228.tar.bz2 |
Teach the hashing facilities how to hash std::string objects.
llvm-svn: 152000
Diffstat (limited to 'llvm/unittests/ADT/HashingTest.cpp')
-rw-r--r-- | llvm/unittests/ADT/HashingTest.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/llvm/unittests/ADT/HashingTest.cpp b/llvm/unittests/ADT/HashingTest.cpp index f00cac2..f5d6aed 100644 --- a/llvm/unittests/ADT/HashingTest.cpp +++ b/llvm/unittests/ADT/HashingTest.cpp @@ -97,6 +97,23 @@ TEST(HashingTest, HashValueStdPair) { hash_value(std::make_pair(obj1, std::make_pair(obj2, obj3)))); } +TEST(HashingTest, HashValueStdString) { + std::string s = "Hello World!"; + EXPECT_EQ(hash_combine_range(s.c_str(), s.c_str() + s.size()), hash_value(s)); + EXPECT_EQ(hash_combine_range(s.c_str(), s.c_str() + s.size() - 1), + hash_value(s.substr(0, s.size() - 1))); + EXPECT_EQ(hash_combine_range(s.c_str() + 1, s.c_str() + s.size() - 1), + hash_value(s.substr(1, s.size() - 2))); + + std::wstring ws = L"Hello Wide World!"; + EXPECT_EQ(hash_combine_range(ws.c_str(), ws.c_str() + ws.size()), + hash_value(ws)); + EXPECT_EQ(hash_combine_range(ws.c_str(), ws.c_str() + ws.size() - 1), + hash_value(ws.substr(0, ws.size() - 1))); + EXPECT_EQ(hash_combine_range(ws.c_str() + 1, ws.c_str() + ws.size() - 1), + hash_value(ws.substr(1, ws.size() - 2))); +} + template <typename T, size_t N> T *begin(T (&arr)[N]) { return arr; } template <typename T, size_t N> T *end(T (&arr)[N]) { return arr + N; } |