| 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 #include "include/v8.h" | 28 #include "include/v8.h" |
| 29 #include "test/cctest/cctest.h" | 29 #include "test/cctest/cctest.h" |
| 30 | 30 |
| 31 #include "include/libplatform/libplatform.h" |
| 31 #include "src/debug.h" | 32 #include "src/debug.h" |
| 32 #include "test/cctest/print-extension.h" | 33 #include "test/cctest/print-extension.h" |
| 33 #include "test/cctest/profiler-extension.h" | 34 #include "test/cctest/profiler-extension.h" |
| 34 #include "test/cctest/trace-extension.h" | 35 #include "test/cctest/trace-extension.h" |
| 35 | 36 |
| 36 enum InitializationState {kUnset, kUnintialized, kInitialized}; | 37 enum InitializationState {kUnset, kUnintialized, kInitialized}; |
| 37 static InitializationState initialization_state_ = kUnset; | 38 static InitializationState initialization_state_ = kUnset; |
| 38 static bool disable_automatic_dispose_ = false; | 39 static bool disable_automatic_dispose_ = false; |
| 39 | 40 |
| 40 CcTest* CcTest::last_ = NULL; | 41 CcTest* CcTest::last_ = NULL; |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 | 132 |
| 132 static void SuggestTestHarness(int tests) { | 133 static void SuggestTestHarness(int tests) { |
| 133 if (tests == 0) return; | 134 if (tests == 0) return; |
| 134 printf("Running multiple tests in sequence is deprecated and may cause " | 135 printf("Running multiple tests in sequence is deprecated and may cause " |
| 135 "bogus failure. Consider using tools/run-tests.py instead.\n"); | 136 "bogus failure. Consider using tools/run-tests.py instead.\n"); |
| 136 } | 137 } |
| 137 | 138 |
| 138 | 139 |
| 139 int main(int argc, char* argv[]) { | 140 int main(int argc, char* argv[]) { |
| 140 v8::V8::InitializeICU(); | 141 v8::V8::InitializeICU(); |
| 142 v8::Platform* platform = v8::platform::CreateDefaultPlatform( |
| 143 v8::base::OS::NumberOfProcessorsOnline()); |
| 144 v8::V8::InitializePlatform(platform); |
| 141 i::Isolate::SetCrashIfDefaultIsolateInitialized(); | 145 i::Isolate::SetCrashIfDefaultIsolateInitialized(); |
| 142 | 146 |
| 143 v8::internal::FlagList::SetFlagsFromCommandLine(&argc, argv, true); | 147 v8::internal::FlagList::SetFlagsFromCommandLine(&argc, argv, true); |
| 144 | 148 |
| 145 CcTestArrayBufferAllocator array_buffer_allocator; | 149 CcTestArrayBufferAllocator array_buffer_allocator; |
| 146 v8::V8::SetArrayBufferAllocator(&array_buffer_allocator); | 150 v8::V8::SetArrayBufferAllocator(&array_buffer_allocator); |
| 147 | 151 |
| 148 i::PrintExtension print_extension; | 152 i::PrintExtension print_extension; |
| 149 v8::RegisterExtension(&print_extension); | 153 v8::RegisterExtension(&print_extension); |
| 150 i::ProfilerExtension profiler_extension; | 154 i::ProfilerExtension profiler_extension; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 } | 203 } |
| 200 } | 204 } |
| 201 v8::internal::DeleteArray<char>(arg_copy); | 205 v8::internal::DeleteArray<char>(arg_copy); |
| 202 } | 206 } |
| 203 } | 207 } |
| 204 if (print_run_count && tests_run != 1) | 208 if (print_run_count && tests_run != 1) |
| 205 printf("Ran %i tests.\n", tests_run); | 209 printf("Ran %i tests.\n", tests_run); |
| 206 CcTest::TearDown(); | 210 CcTest::TearDown(); |
| 207 // TODO(svenpanne) See comment above. | 211 // TODO(svenpanne) See comment above. |
| 208 // if (!disable_automatic_dispose_) v8::V8::Dispose(); | 212 // if (!disable_automatic_dispose_) v8::V8::Dispose(); |
| 213 v8::V8::ShutdownPlatform(); |
| 214 delete platform; |
| 209 return 0; | 215 return 0; |
| 210 } | 216 } |
| 211 | 217 |
| 212 RegisterThreadedTest *RegisterThreadedTest::first_ = NULL; | 218 RegisterThreadedTest *RegisterThreadedTest::first_ = NULL; |
| 213 int RegisterThreadedTest::count_ = 0; | 219 int RegisterThreadedTest::count_ = 0; |
| OLD | NEW |