Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ci/builders/linux_unopt.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
{
"drone_dimensions": [
"device_type=none",
"os=Linux"
"os=Linux",
"cores=32"
],
"gn": [
"--runtime-mode",
Expand Down
4 changes: 2 additions & 2 deletions testing/run_all_unittests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ std::optional<fml::TimeDelta> GetTestTimeout() {

std::string timeout_seconds;
if (!command_line.GetOptionValue("timeout", &timeout_seconds)) {
// No timeout specified. Default to 120s.
return fml::TimeDelta::FromSeconds(120u);
// No timeout specified. Default to 300s.
return fml::TimeDelta::FromSeconds(300u);
}

const auto seconds = std::stoi(timeout_seconds);
Expand Down