summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorI-Jui (Ray) Sung <ray@multicorewareinc.com>2013-10-11 21:29:17 -0500
committerKohei Yoshida <kohei.yoshida@collabora.com>2013-10-29 16:59:50 -0400
commitbdd1962a0a0a22bad6569cbd8f9050c97797886f (patch)
treeb2880bc4f9242923e2bdb327a55df98573c8f3de
parent69e3aadf28be81edb87d1f7c3f1b52614fdbcb42 (diff)
Test 3 in min_max_avg_recursive_RPN_tests.xls fails
Testing some fancier nested function invocation involving min() Change-Id: Ia1f6a14ba285d2a5e082dbf4c96f6e5b83cb3654
-rw-r--r--sc/qa/unit/data/xls/sum_ex.xlsbin15872 -> 16896 bytes
-rw-r--r--sc/qa/unit/opencl-test.cxx5
2 files changed, 4 insertions, 1 deletions
diff --git a/sc/qa/unit/data/xls/sum_ex.xls b/sc/qa/unit/data/xls/sum_ex.xls
index 5a8065f788dd..b9642a667911 100644
--- a/sc/qa/unit/data/xls/sum_ex.xls
+++ b/sc/qa/unit/data/xls/sum_ex.xls
Binary files differ
diff --git a/sc/qa/unit/opencl-test.cxx b/sc/qa/unit/opencl-test.cxx
index 29f4943c3b2b..667988fbab88 100644
--- a/sc/qa/unit/opencl-test.cxx
+++ b/sc/qa/unit/opencl-test.cxx
@@ -207,12 +207,15 @@ void ScOpenclTest::testSharedFormulaXLS()
CPPUNIT_ASSERT_EQUAL(fExcel, fLibre);
}
- // AMLOEXT-15
+ // AMLOEXT-15 and AMLOEXT-16
for (SCROW i = 5; i < 10; ++i)
{
double fLibre = pDoc->GetValue(ScAddress(6, i, 1));
double fExcel = pDocRes->GetValue(ScAddress(6, i, 1));
CPPUNIT_ASSERT_EQUAL(fExcel, fLibre);
+ fLibre = pDoc->GetValue(ScAddress(7, i, 1));
+ fExcel = pDocRes->GetValue(ScAddress(7, i, 1));
+ CPPUNIT_ASSERT_EQUAL(fExcel, fLibre);
}
xDocSh->DoClose();
xDocShRes->DoClose();