OLD | NEW |
1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 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 10 matching lines...) Expand all Loading... |
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 #ifndef CCTEST_H_ | 28 #ifndef CCTEST_H_ |
29 #define CCTEST_H_ | 29 #define CCTEST_H_ |
30 | 30 |
| 31 #include "include/libplatform/libplatform.h" |
31 #include "src/v8.h" | 32 #include "src/v8.h" |
32 | 33 |
33 #ifndef TEST | 34 #ifndef TEST |
34 #define TEST(Name) \ | 35 #define TEST(Name) \ |
35 static void Test##Name(); \ | 36 static void Test##Name(); \ |
36 CcTest register_test_##Name(Test##Name, __FILE__, #Name, NULL, true, true); \ | 37 CcTest register_test_##Name(Test##Name, __FILE__, #Name, NULL, true, true); \ |
37 static void Test##Name() | 38 static void Test##Name() |
38 #endif | 39 #endif |
39 | 40 |
40 #ifndef UNINITIALIZED_TEST | 41 #ifndef UNINITIALIZED_TEST |
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
587 | 588 |
588 | 589 |
589 static inline void EnableDebugger() { | 590 static inline void EnableDebugger() { |
590 v8::Debug::SetDebugEventListener(&DummyDebugEventListener); | 591 v8::Debug::SetDebugEventListener(&DummyDebugEventListener); |
591 } | 592 } |
592 | 593 |
593 | 594 |
594 static inline void DisableDebugger() { v8::Debug::SetDebugEventListener(NULL); } | 595 static inline void DisableDebugger() { v8::Debug::SetDebugEventListener(NULL); } |
595 | 596 |
596 | 597 |
| 598 static inline void EmptyMessageQueues(v8::Isolate* isolate) { |
| 599 while (v8::platform::PumpMessageLoop(v8::internal::V8::GetCurrentPlatform(), |
| 600 isolate)) |
| 601 ; |
| 602 } |
| 603 |
| 604 |
597 // Helper class for new allocations tracking and checking. | 605 // Helper class for new allocations tracking and checking. |
598 // To use checking of JS allocations tracking in a test, | 606 // To use checking of JS allocations tracking in a test, |
599 // just create an instance of this class. | 607 // just create an instance of this class. |
600 class HeapObjectsTracker { | 608 class HeapObjectsTracker { |
601 public: | 609 public: |
602 HeapObjectsTracker() { | 610 HeapObjectsTracker() { |
603 heap_profiler_ = i::Isolate::Current()->heap_profiler(); | 611 heap_profiler_ = i::Isolate::Current()->heap_profiler(); |
604 CHECK_NOT_NULL(heap_profiler_); | 612 CHECK_NOT_NULL(heap_profiler_); |
605 heap_profiler_->StartHeapObjectsTracking(true); | 613 heap_profiler_->StartHeapObjectsTracking(true); |
606 } | 614 } |
(...skipping 29 matching lines...) Expand all Loading... |
636 HandleAndZoneScope() {} | 644 HandleAndZoneScope() {} |
637 | 645 |
638 // Prefixing the below with main_ reduces a lot of naming clashes. | 646 // Prefixing the below with main_ reduces a lot of naming clashes. |
639 i::Zone* main_zone() { return &main_zone_; } | 647 i::Zone* main_zone() { return &main_zone_; } |
640 | 648 |
641 private: | 649 private: |
642 i::Zone main_zone_; | 650 i::Zone main_zone_; |
643 }; | 651 }; |
644 | 652 |
645 #endif // ifndef CCTEST_H_ | 653 #endif // ifndef CCTEST_H_ |
OLD | NEW |