Skip to content

Commit db584f1

Browse files
Restore 20s UDP timeout budget on Windows CI.
Scale with active test count using factor 20 so a full matrix matches the prior TimeUnit(200) ceiling under NUCLEAR_TEST_TIME_UNIT_DEN=10. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 030a98a commit db584f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/tests/dsl/UDP.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ class TestReactor : public test_util::TestBase<TestReactor> {
188188
TestReactor(std::unique_ptr<NUClear::Environment> environment, const std::vector<TestType>& active_tests_)
189189
: TestBase(std::move(environment),
190190
false,
191-
test_util::TimeUnit(std::max<int64_t>(50, static_cast<int64_t>(active_tests_.size()) * 17))),
191+
test_util::TimeUnit(std::max<int64_t>(50, static_cast<int64_t>(active_tests_.size()) * 20))),
192192
active_tests(active_tests_) {
193193

194194
for (const auto& t : active_tests) {

0 commit comments

Comments
 (0)