diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-01-31 19:53:04 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-01-31 23:34:32 +0100 |
commit | 3564b5c6e93b2bf5881b359015efae351dbe8342 (patch) | |
tree | a2352fd0cc22af9be9aea1cf850f20432a05e496 /basic | |
parent | eb22360b0f71ea087845b3db2c99ff48304f1a18 (diff) |
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 <sbergman@redhat.com>
Diffstat (limited to 'basic')
-rw-r--r-- | basic/qa/basic_coverage/test_tdf132388_ReplacePerformance.bas | 4 |
1 files changed, 2 insertions, 2 deletions
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) |