basic/qa/basic_coverage/test_tdf132388_ReplacePerformance.bas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 3564b5c6e93b2bf5881b359015efae351dbe8342 Author: Stephan Bergmann <[email protected]> AuthorDate: Mon Jan 31 19:53:04 2022 +0100 Commit: Stephan Bergmann <[email protected]> CommitDate: Mon Jan 31 23:34:32 2022 +0100 Adapt test to slow builds ...like my local ASan+UBSan build, which kept failing with > Failed: TestReplacePerformance (t = 35 s) > Tests passed: 0 > Tests failed: 1 when the machine was under load during a parallelizing `make check` Change-Id: I59c81a61a29df7165f6fad33e3fe3da975f05ed2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129237 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/basic/qa/basic_coverage/test_tdf132388_ReplacePerformance.bas b/basic/qa/basic_coverage/test_tdf132388_ReplacePerformance.bas index 8fcdd06e0773..531cdec5c622 100644 --- a/basic/qa/basic_coverage/test_tdf132388_ReplacePerformance.bas +++ b/basic/qa/basic_coverage/test_tdf132388_ReplacePerformance.bas @@ -14,14 +14,14 @@ End Function Sub TestReplacePerformance() On Error GoTo errorHandler - ' Assume the normal case to be much faster than 20 s even on slow boxes, and the test string + ' Assume the normal case to be much faster than 60 s even on slow boxes, and the test string ' is long enough to cause serious performance regressions make it perform much longer n = 10000000 s = Space(n) t = Now s = Replace(s, " ", "*", 1, -1, 1) t = Now - t - TestUtil.Assert(t <= TimeSerial(0, 0, 20), "TestReplacePerformance", Format(t, """t = ""[s]"" s""")) + TestUtil.Assert(t <= TimeSerial(0, 1, 0), "TestReplacePerformance", Format(t, """t = ""[s]"" s""")) Exit Sub errorHandler: TestUtil.ReportErrorHandler("TestReplacePerformance", Err, Error$, Erl)
