Reviewers: Rico, Description: Unthread message handling test. Changing the MessageHandler in a threaded test is not a good idea as it has an effect on other tests.
Please review this at http://codereview.chromium.org/6273004/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M test/cctest/test-api.cc Index: test/cctest/test-api.cc =================================================================== --- test/cctest/test-api.cc (revision 6322) +++ test/cctest/test-api.cc (working copy) @@ -2368,7 +2368,7 @@ // Test that overwritten toString methods are not invoked on uncaught // exception formatting. However, they are invoked when performing // normal error string conversions. -THREADED_TEST(APIThrowMessageOverwrittenToString) { +TEST(APIThrowMessageOverwrittenToString) { v8::HandleScope scope; v8::V8::AddMessageListener(check_reference_error_message); LocalContext context; -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
