Index: test/cctest/test-api.cc |
diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc |
index c363f8843bc0e5205b21d769ad279e97db08cdf8..12f481019b05cfe2d87693b15354ac9f2514d519 100644 |
--- a/test/cctest/test-api.cc |
+++ b/test/cctest/test-api.cc |
@@ -12562,18 +12562,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()); |
} |