2014-09-04 08:44:03 +00:00
|
|
|
// Copyright 2014 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-02-08 22:26:16 +00:00
|
|
|
#include "include/cppgc/platform.h"
|
2014-09-04 08:44:03 +00:00
|
|
|
#include "include/libplatform/libplatform.h"
|
2021-08-23 11:52:36 +00:00
|
|
|
#include "include/v8.h"
|
2014-09-04 08:44:03 +00:00
|
|
|
#include "src/base/compiler-specific.h"
|
|
|
|
#include "testing/gmock/include/gmock/gmock.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2015-04-20 13:08:11 +00:00
|
|
|
class DefaultPlatformEnvironment final : public ::testing::Environment {
|
2014-09-04 08:44:03 +00:00
|
|
|
public:
|
2018-09-13 10:07:40 +00:00
|
|
|
DefaultPlatformEnvironment() = default;
|
2014-09-04 08:44:03 +00:00
|
|
|
|
2015-11-04 13:08:27 +00:00
|
|
|
void SetUp() override {
|
2017-11-13 13:16:49 +00:00
|
|
|
platform_ = v8::platform::NewDefaultPlatform(
|
2017-03-07 13:37:41 +00:00
|
|
|
0, v8::platform::IdleTaskSupport::kEnabled);
|
2018-09-13 14:55:18 +00:00
|
|
|
ASSERT_TRUE(platform_.get() != nullptr);
|
2017-11-13 13:16:49 +00:00
|
|
|
v8::V8::InitializePlatform(platform_.get());
|
2021-02-08 22:26:16 +00:00
|
|
|
cppgc::InitializeProcess(platform_->GetPageAllocator());
|
2014-09-04 08:44:03 +00:00
|
|
|
ASSERT_TRUE(v8::V8::Initialize());
|
|
|
|
}
|
|
|
|
|
2015-11-04 13:08:27 +00:00
|
|
|
void TearDown() override {
|
2018-09-13 14:55:18 +00:00
|
|
|
ASSERT_TRUE(platform_.get() != nullptr);
|
2014-09-04 08:44:03 +00:00
|
|
|
v8::V8::Dispose();
|
|
|
|
v8::V8::ShutdownPlatform();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2017-11-13 13:16:49 +00:00
|
|
|
std::unique_ptr<v8::Platform> platform_;
|
2014-09-04 08:44:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
2017-01-05 12:22:26 +00:00
|
|
|
// Don't catch SEH exceptions and continue as the following tests might hang
|
|
|
|
// in an broken environment on windows.
|
|
|
|
testing::GTEST_FLAG(catch_exceptions) = false;
|
2020-01-20 19:16:44 +00:00
|
|
|
|
|
|
|
// Most V8 unit-tests are multi-threaded, so enable thread-safe death-tests.
|
|
|
|
testing::FLAGS_gtest_death_test_style = "threadsafe";
|
|
|
|
|
2014-09-04 08:44:03 +00:00
|
|
|
testing::InitGoogleMock(&argc, argv);
|
|
|
|
testing::AddGlobalTestEnvironment(new DefaultPlatformEnvironment);
|
|
|
|
v8::V8::SetFlagsFromCommandLine(&argc, argv, true);
|
2015-08-14 12:11:29 +00:00
|
|
|
v8::V8::InitializeExternalStartupData(argv[0]);
|
2019-05-15 21:33:32 +00:00
|
|
|
v8::V8::InitializeICUDefaultLocation(argv[0]);
|
2014-09-04 08:44:03 +00:00
|
|
|
return RUN_ALL_TESTS();
|
|
|
|
}
|