Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #18050: Test fails because takes too long #3144

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ class StatusReportTest extends Specification {
}
val t1 = System.nanoTime
println(s"Time to run test for sum is ${(t1-t0)/1000} µs")
(t1-t0) must be lessThan( 50000*1000 ) // tests show 3159µs on recent XPS but 30795 µs on XPS 15 9650
(t1-t0) must be lessThan( 100000*1000 ) // tests show 3159µs on recent XPS but *30795* µs on XPS 15 9650 and > 60 000 on CI
}
}
}
Expand Down