Reviewers: ager, Description: Don't run the string resource tests threaded for now. I'm debugging the issue and will file an issue for it.
Please review this at http://codereview.chromium.org/2419 Affected files: M test/cctest/test-api.cc Index: test/cctest/test-api.cc =================================================================== --- test/cctest/test-api.cc (revision 270) +++ test/cctest/test-api.cc (working copy) @@ -445,7 +445,7 @@ int TestAsciiResource::dispose_count = 0; -THREADED_TEST(ScriptUsingStringResource) { +TEST(ScriptUsingStringResource) { TestResource::dispose_count = 0; const char* c_source = "1 + 2 * 3"; uint16_t* two_byte_source = AsciiToTwoByteString(c_source); @@ -469,7 +469,7 @@ } -THREADED_TEST(ScriptUsingAsciiStringResource) { +TEST(ScriptUsingAsciiStringResource) { TestAsciiResource::dispose_count = 0; const char* c_source = "1 + 2 * 3"; { --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
