| Index: test/cctest/test-parsing.cc
|
| diff --git a/test/cctest/test-parsing.cc b/test/cctest/test-parsing.cc
|
| index b36621742ae2824c01b72a538145b6263d184c8c..40679ad043645cd72c64aff6830c6e650dce3a2b 100644
|
| --- a/test/cctest/test-parsing.cc
|
| +++ b/test/cctest/test-parsing.cc
|
| @@ -1249,7 +1249,7 @@ void TestParserSyncWithFlags(i::Handle<i::String> source,
|
| isolate, exception_handle, "message").ToHandleChecked());
|
|
|
| if (result == kSuccess) {
|
| - i::OS::Print(
|
| + v8::base::OS::Print(
|
| "Parser failed on:\n"
|
| "\t%s\n"
|
| "with error:\n"
|
| @@ -1260,7 +1260,7 @@ void TestParserSyncWithFlags(i::Handle<i::String> source,
|
| }
|
|
|
| if (!data.has_error()) {
|
| - i::OS::Print(
|
| + v8::base::OS::Print(
|
| "Parser failed on:\n"
|
| "\t%s\n"
|
| "with error:\n"
|
| @@ -1272,7 +1272,7 @@ void TestParserSyncWithFlags(i::Handle<i::String> source,
|
| // Check that preparser and parser produce the same error.
|
| i::Handle<i::String> preparser_message = FormatMessage(&data);
|
| if (!i::String::Equals(message_string, preparser_message)) {
|
| - i::OS::Print(
|
| + v8::base::OS::Print(
|
| "Expected parser and preparser to produce the same error on:\n"
|
| "\t%s\n"
|
| "However, found the following error messages\n"
|
| @@ -1284,7 +1284,7 @@ void TestParserSyncWithFlags(i::Handle<i::String> source,
|
| CHECK(false);
|
| }
|
| } else if (data.has_error()) {
|
| - i::OS::Print(
|
| + v8::base::OS::Print(
|
| "Preparser failed on:\n"
|
| "\t%s\n"
|
| "with error:\n"
|
| @@ -1293,7 +1293,7 @@ void TestParserSyncWithFlags(i::Handle<i::String> source,
|
| source->ToCString().get(), FormatMessage(&data)->ToCString().get());
|
| CHECK(false);
|
| } else if (result == kError) {
|
| - i::OS::Print(
|
| + v8::base::OS::Print(
|
| "Expected error on:\n"
|
| "\t%s\n"
|
| "However, parser and preparser succeeded",
|
| @@ -2041,7 +2041,7 @@ TEST(DontRegressPreParserDataSizes) {
|
| CHECK(!data->HasError());
|
|
|
| if (data->function_count() != test_cases[i].functions) {
|
| - i::OS::Print(
|
| + v8::base::OS::Print(
|
| "Expected preparse data for program:\n"
|
| "\t%s\n"
|
| "to contain %d functions, however, received %d functions.\n",
|
|
|