diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-11-29 18:07:00 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-11-30 07:20:41 +0100 |
commit | 0c3444c9bcee093ad5976af8948138e6f2a97706 (patch) | |
tree | 22be000ea028a3e134d9e4634c83d995474504ee /sccomp/qa | |
parent | d43e694d5e296ffc2eabacbddd50c5a0256a8f6d (diff) |
Weaken SwarmSolverTest::testUnconstrained even further for now
...after 1fa761af825641da5c87f80c2a17135f92418960 "Ridiculously large delta for
SwarmSolverTest::testUnconstrained for now", to accommodate further Jenkins
lo_ubsan failures with actual values of 3.67055466470122
(<https://ci.libreoffice.org/job/lo_ubsan/741/console>) and 3.88389164367578
(<https://ci.libreoffice.org/job/lo_ubsan/743/console>).
Change-Id: Ibacb25ba82c2c279ef8dcd19c5ce7f6d5d8014d5
Reviewed-on: https://gerrit.libreoffice.org/45520
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sccomp/qa')
-rw-r--r-- | sccomp/qa/unit/SwarmSolverTest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sccomp/qa/unit/SwarmSolverTest.cxx b/sccomp/qa/unit/SwarmSolverTest.cxx index 0be632dfb174..d0652e0fc0a9 100644 --- a/sccomp/qa/unit/SwarmSolverTest.cxx +++ b/sccomp/qa/unit/SwarmSolverTest.cxx @@ -103,7 +103,7 @@ void SwarmSolverTest::testUnconstrained() uno::Sequence<double> aSolution = xSolver->getSolution(); CPPUNIT_ASSERT_EQUAL(aSolution.getLength(), aVariables.getLength()); - CPPUNIT_ASSERT_DOUBLES_EQUAL(3.0, aSolution[0], .2); + CPPUNIT_ASSERT_DOUBLES_EQUAL(3.0, aSolution[0], .9); } void SwarmSolverTest::testVariableBounded() |