| Index: test/cctest/test-api.cc
|
| diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc
|
| index 06cb2d626ca0432b57f7bc72b84e873b17b82f08..3f568beb4a8f1404aae54804e886aa04c321ac6f 100644
|
| --- a/test/cctest/test-api.cc
|
| +++ b/test/cctest/test-api.cc
|
| @@ -12550,18 +12550,6 @@
|
| v8::Integer::New(context->GetIsolate(), 7));
|
| script = v8::Script::Compile(source, &origin2);
|
| CheckTryCatchSourceInfo(script, resource_name, 7);
|
| -}
|
| -
|
| -
|
| -THREADED_TEST(TryCatchSourceInfoForEOSError) {
|
| - LocalContext context;
|
| - v8::HandleScope scope(context->GetIsolate());
|
| - v8::TryCatch try_catch;
|
| - v8::Script::Compile(v8_str("!\n"));
|
| - CHECK(try_catch.HasCaught());
|
| - v8::Handle<v8::Message> message = try_catch.Message();
|
| - CHECK_EQ(1, message->GetLineNumber());
|
| - CHECK_EQ(0, message->GetStartColumn());
|
| }
|
|
|
|
|
|
|