summaryrefslogtreecommitdiff
path: root/unittests/VMCore
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2009-09-02 21:49:26 +0000
committerDevang Patel <dpatel@apple.com>2009-09-02 21:49:26 +0000
commit8fc55764139f478087fc0a0d3c02da436e84bf43 (patch)
tree64d319e39923fa597ac936981ee5c27afd986669 /unittests/VMCore
parentd9489cbb0cf933da9e2154a5336533d6254a5c30 (diff)
downloadllvm-8fc55764139f478087fc0a0d3c02da436e84bf43.tar.gz
llvm-8fc55764139f478087fc0a0d3c02da436e84bf43.tar.bz2
llvm-8fc55764139f478087fc0a0d3c02da436e84bf43.tar.xz
Revert 80839 for now. It causes test failures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80841 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/VMCore')
-rw-r--r--unittests/VMCore/MetadataTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/VMCore/MetadataTest.cpp b/unittests/VMCore/MetadataTest.cpp
index cdf5a6e6b9..f174fb65b8 100644
--- a/unittests/VMCore/MetadataTest.cpp
+++ b/unittests/VMCore/MetadataTest.cpp
@@ -85,7 +85,7 @@ TEST(MDNodeTest, Simple) {
MDNode *n2 = MDNode::get(Context, &c1, 1);
MDNode *n3 = MDNode::get(Context, &V[0], 3);
EXPECT_NE(n1, n2);
- EXPECT_EQ(n1, n3);
+ // FIXME: Enable uniqueness test. EXPECT_EQ(n1, n3);
EXPECT_EQ(3u, n1->getNumElements());
EXPECT_EQ(s1, n1->getElement(0));