Make this test more lenient; with SmallVector now using actually

aligned storage, the capacity may be more than what is explicitly
requested.

llvm-svn: 98846
This commit is contained in:
Dan Gohman 2010-03-18 18:47:50 +00:00
parent 3c7cde466e
commit ed4c2eb7bf
1 changed files with 1 additions and 1 deletions

View File

@ -384,7 +384,7 @@ TEST_F(SmallVectorTest, ConstVectorTest) {
// Direct array access. // Direct array access.
TEST_F(SmallVectorTest, DirectVectorTest) { TEST_F(SmallVectorTest, DirectVectorTest) {
EXPECT_EQ(0u, theVector.size()); EXPECT_EQ(0u, theVector.size());
EXPECT_EQ(4u, theVector.capacity()); EXPECT_LE(4u, theVector.capacity());
EXPECT_EQ(0, Constructable::getNumConstructorCalls()); EXPECT_EQ(0, Constructable::getNumConstructorCalls());
theVector.end()[0] = 1; theVector.end()[0] = 1;
theVector.end()[1] = 2; theVector.end()[1] = 2;