| Index: test/cctest/test-mark-compact.cc
|
| diff --git a/test/cctest/test-mark-compact.cc b/test/cctest/test-mark-compact.cc
|
| index c7d65310a45c04a1198f91b00f26c333dc0abeef..64d995d95ad9c9668f54185d7ad7bb283cde80f5 100644
|
| --- a/test/cctest/test-mark-compact.cc
|
| +++ b/test/cctest/test-mark-compact.cc
|
| @@ -446,7 +446,7 @@ static intptr_t MemoryInUse() {
|
| bool write_permission = (buffer[position++] == 'w');
|
| CHECK(buffer[position] == '-' || buffer[position] == 'x');
|
| bool execute_permission = (buffer[position++] == 'x');
|
| - CHECK(buffer[position] == '-' || buffer[position] == 'p');
|
| + CHECK(buffer[position] == 's' || buffer[position] == 'p');
|
| bool private_mapping = (buffer[position++] == 'p');
|
| CHECK_EQ(buffer[position++], ' ');
|
| uintptr_t offset = ReadLong(buffer, &position, 16);
|
|
|