From: Devang Patel Date: Wed, 2 Sep 2009 00:16:33 +0000 (+0000) Subject: Disable uniqueness test for now. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d2a5cfe00db55e3dea99cd804179d30505edc537;p=oota-llvm.git Disable uniqueness test for now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80741 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/VMCore/MetadataTest.cpp b/unittests/VMCore/MetadataTest.cpp index cdf5a6e6b90..f174fb65b81 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));