OLD | NEW |
---|---|
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 2468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2479 { | 2479 { |
2480 v8::HandleScope scope(isolate); | 2480 v8::HandleScope scope(isolate); |
2481 Local<String> str = v8_str("str"); | 2481 Local<String> str = v8_str("str"); |
2482 global = v8::Persistent<String>::New(isolate, str); | 2482 global = v8::Persistent<String>::New(isolate, str); |
2483 } | 2483 } |
2484 CHECK_EQ(global->Length(), 3); | 2484 CHECK_EQ(global->Length(), 3); |
2485 global.Dispose(isolate); | 2485 global.Dispose(isolate); |
2486 } | 2486 } |
2487 | 2487 |
2488 | 2488 |
2489 THREADED_TEST(ResettingGlobalHandle) { | |
Sven Panne
2013/05/07 09:49:31
A test for passing an empty handle to reset is mis
marja
2013/05/07 11:17:17
Added a test here which says that after resetting
| |
2490 v8::Isolate* isolate = v8::Isolate::GetCurrent(); | |
2491 v8::internal::GlobalHandles* global_handles = NULL; | |
2492 int initial_handle_count = 0; | |
2493 v8::Persistent<String> global; | |
2494 { | |
2495 v8::HandleScope scope(isolate); | |
2496 Local<String> str = v8_str("str"); | |
2497 global_handles = | |
2498 reinterpret_cast<v8::internal::Isolate*>(isolate)->global_handles(); | |
2499 initial_handle_count = global_handles->NumberOfGlobalHandles(); | |
2500 global = v8::Persistent<String>::New(isolate, str); | |
2501 } | |
2502 CHECK_EQ(global->Length(), 3); | |
2503 CHECK_EQ(global_handles->NumberOfGlobalHandles(), initial_handle_count + 1); | |
2504 { | |
2505 v8::HandleScope scope(isolate); | |
2506 Local<String> str = v8_str("longer"); | |
2507 global.Reset(isolate, str); | |
2508 } | |
2509 CHECK_EQ(global->Length(), 6); | |
2510 CHECK_EQ(global_handles->NumberOfGlobalHandles(), initial_handle_count + 1); | |
2511 global.Dispose(isolate); | |
2512 CHECK_EQ(global_handles->NumberOfGlobalHandles(), initial_handle_count); | |
2513 } | |
2514 | |
2515 | |
2489 THREADED_TEST(LocalHandle) { | 2516 THREADED_TEST(LocalHandle) { |
2490 v8::HandleScope scope(v8::Isolate::GetCurrent()); | 2517 v8::HandleScope scope(v8::Isolate::GetCurrent()); |
2491 v8::Local<String> local = v8::Local<String>::New(v8_str("str")); | 2518 v8::Local<String> local = v8::Local<String>::New(v8_str("str")); |
2492 CHECK_EQ(local->Length(), 3); | 2519 CHECK_EQ(local->Length(), 3); |
2493 | 2520 |
2494 local = v8::Local<String>::New(v8::Isolate::GetCurrent(), v8_str("str")); | 2521 local = v8::Local<String>::New(v8::Isolate::GetCurrent(), v8_str("str")); |
2495 CHECK_EQ(local->Length(), 3); | 2522 CHECK_EQ(local->Length(), 3); |
2496 } | 2523 } |
2497 | 2524 |
2498 | 2525 |
(...skipping 16394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
18893 i::Semaphore* sem_; | 18920 i::Semaphore* sem_; |
18894 volatile int sem_value_; | 18921 volatile int sem_value_; |
18895 }; | 18922 }; |
18896 | 18923 |
18897 | 18924 |
18898 THREADED_TEST(SemaphoreInterruption) { | 18925 THREADED_TEST(SemaphoreInterruption) { |
18899 ThreadInterruptTest().RunTest(); | 18926 ThreadInterruptTest().RunTest(); |
18900 } | 18927 } |
18901 | 18928 |
18902 #endif // WIN32 | 18929 #endif // WIN32 |
OLD | NEW |