[PATCH] D37128: [unittests] Remove reverse iteration tests which use pointer-like keys
Mandeep Singh Grang via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 24 18:12:42 PDT 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL311741: [unittests] Remove reverse iteration tests which use pointer-like keys (authored by mgrang).
Changed prior to commit:
https://reviews.llvm.org/D37128?vs=112643&id=112644#toc
Repository:
rL LLVM
https://reviews.llvm.org/D37128
Files:
llvm/trunk/unittests/Support/ReverseIterationTest.cpp
Index: llvm/trunk/unittests/Support/ReverseIterationTest.cpp
===================================================================
--- llvm/trunk/unittests/Support/ReverseIterationTest.cpp
+++ llvm/trunk/unittests/Support/ReverseIterationTest.cpp
@@ -12,7 +12,6 @@
//===---------------------------------------------------------------------===//
#include "llvm/ADT/DenseMap.h"
-#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/Support/ReverseIteration.h"
#include "gtest/gtest.h"
@@ -23,41 +22,14 @@
"int * is pointer-like");
static_assert(detail::IsPointerLike<uintptr_t>::value,
"uintptr_t is pointer-like");
+ static_assert(!detail::IsPointerLike<int>::value,
+ "int is not pointer-like");
+ static_assert(detail::IsPointerLike<void *>::value,
+ "void * is pointer-like");
struct IncompleteType;
static_assert(detail::IsPointerLike<IncompleteType *>::value,
"incomplete * is pointer-like");
- // Test reverse iteration for a DenseMap with pointer-like keys.
- // DenseMap should reverse iterate if its keys are pointer-like.
- DenseMap<int *, int> Map;
- int a = 1, b = 2, c = 3, d = 4;
- int *Keys[] = { &a, &b, &c, &d };
-
- // Insert keys into the DenseMap.
- for (auto *Key: Keys)
- Map[Key] = 0;
-
- // Note: This is the observed order of keys in the DenseMap.
- // If there is any change in the behavior of the DenseMap, this order would
- // need to be adjusted accordingly.
- int *IterKeys[] = { &a, &b, &c, &d };
- if (shouldReverseIterate<int *>())
- std::reverse(&IterKeys[0], &IterKeys[4]);
-
- // Check that the DenseMap is iterated in the expected order.
- for (const auto &Tuple : zip(Map, IterKeys))
- ASSERT_EQ(*(std::get<0>(Tuple).first), *(std::get<1>(Tuple)));
-
- // Check operator++ (post-increment).
- int i = 0;
- for (auto iter = Map.begin(), end = Map.end(); iter != end; iter++, ++i)
- ASSERT_EQ(iter->first, IterKeys[i]);
-}
-
-TEST(ReverseIterationTest, DenseMapTest2) {
- static_assert(!detail::IsPointerLike<int>::value,
- "int is not pointer-like");
-
// For a DenseMap with non-pointer-like keys, forward iteration equals
// reverse iteration.
DenseMap<int, int> Map;
@@ -81,31 +53,3 @@
for (auto iter = Map.begin(), end = Map.end(); iter != end; iter++, ++i)
ASSERT_EQ(iter->first, IterKeys[i]);
}
-
-TEST(ReverseIterationTest, SmallPtrSetTest) {
- static_assert(detail::IsPointerLike<void *>::value,
- "void * is pointer-like");
-
- SmallPtrSet<void *, 4> Set;
- int a = 1, b = 2, c = 3, d = 4;
- int *Ptrs[] = { &a, &b, &c, &d };
-
- for (auto *Ptr: Ptrs)
- Set.insert(Ptr);
-
- // Note: This is the observed order of keys in the SmallPtrSet.
- // If there is any change in the behavior of the SmallPtrSet, this order
- // would need to be adjusted accordingly.
- int *IterPtrs[] = { &a, &b, &c, &d };
- if (shouldReverseIterate<int *>())
- std::reverse(&IterPtrs[0], &IterPtrs[4]);
-
- // Check that the SmallPtrSet is iterated in the expected order.
- for (const auto &Tuple : zip(Set, IterPtrs))
- ASSERT_EQ(std::get<0>(Tuple), std::get<1>(Tuple));
-
- // Check operator++ (post-increment).
- int i = 0;
- for (auto iter = Set.begin(), end = Set.end(); iter != end; iter++, ++i)
- ASSERT_EQ(*iter, IterPtrs[i]);
-}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D37128.112644.patch
Type: text/x-patch
Size: 3361 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170825/c7c3beeb/attachment.bin>
More information about the llvm-commits
mailing list