| Index: test/cctest/test-platform.cc
|
| diff --git a/test/cctest/test-platform.cc b/test/cctest/test-platform.cc
|
| index 1b6be8bee5354b9933aec6ff88357079d3164d30..3beaccea8e0021ed9c5c451893cdb577c834acc6 100644
|
| --- a/test/cctest/test-platform.cc
|
| +++ b/test/cctest/test-platform.cc
|
| @@ -27,7 +27,7 @@
|
|
|
| #include <stdlib.h>
|
|
|
| -#include "src/platform.h"
|
| +#include "src/base/platform/platform.h"
|
| #include "test/cctest/cctest.h"
|
|
|
| using namespace ::v8::internal;
|
| @@ -94,7 +94,7 @@ TEST(StackAlignment) {
|
| v8::Local<v8::Function>::Cast(global_object->Get(v8_str("foo")));
|
|
|
| v8::Local<v8::Value> result = foo->Call(global_object, 0, NULL);
|
| - CHECK_EQ(0, result->Int32Value() % OS::ActivationFrameAlignment());
|
| + CHECK_EQ(0, result->Int32Value() % v8::base::OS::ActivationFrameAlignment());
|
| }
|
|
|
| #undef GET_STACK_POINTERS
|
|
|