summaryrefslogtreecommitdiff
path: root/sc/qa/perf
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2015-09-02 14:31:21 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2015-09-02 14:31:21 -0500
commit37e94841db43740a4df1ed9c9a4e9180523814bc (patch)
tree9cf12d4e4f716b5de61b72d6d2e4358f08c3e3e8 /sc/qa/perf
parent159792e02fd47c50b1e8c6eb23474eaa5cf8cd07 (diff)
percheck: produce similar stats than off-tree callgrind
Change-Id: I7035ea6f2d9ffe92282533064d69b75e2c1989e1
Diffstat (limited to 'sc/qa/perf')
-rw-r--r--sc/qa/perf/scperfobj.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sc/qa/perf/scperfobj.cxx b/sc/qa/perf/scperfobj.cxx
index b30a2c28fef4..4e4e1a893383 100644
--- a/sc/qa/perf/scperfobj.cxx
+++ b/sc/qa/perf/scperfobj.cxx
@@ -136,7 +136,7 @@ void ScPerfObj::testSheetFindAll()
uno::Reference< container::XIndexAccess > xIndex = xSearchable->findAll(xSearchDescr);
- callgrindDump("testSheetFindAll-Search value");
+ callgrindDump("sc:search_all_sheets_by_value");
CPPUNIT_ASSERT(xIndex.is());
@@ -158,7 +158,7 @@ void ScPerfObj::testSheetFindAll()
uno::Reference< container::XIndexAccess > xIndex2 = xSearchableStyle->findAll(xSearchDescr);
- callgrindDump("testSheetFindAll-Search style");
+ callgrindDump("sc:search_all_sheets_by_style");
CPPUNIT_ASSERT(xIndex2.is());
@@ -194,7 +194,7 @@ void ScPerfObj::testSheetNamedRanges()
{
callgrindStart();
xNamedRanges->removeByName(maNameToRemove);
- callgrindDump("Namedranges-removeByName");
+ callgrindDump("sc:remove_named_range_by_name");
}
// test addNewByName
@@ -205,13 +205,13 @@ void ScPerfObj::testSheetNamedRanges()
OUString aName1("single_added");
callgrindStart();
xNamedRanges->addNewByName(aName1, aContent1, aBaseAddress, nType);
- callgrindDump("Namedranges-addNewByName");
+ callgrindDump("sc:add_named_range_by_name");
//test AddNewFromTitles with some 1000 new named ranges
table::CellRangeAddress aCellRangeAddress = table::CellRangeAddress(0,1,0,2,999);
callgrindStart();
xNamedRanges->addNewFromTitles(aCellRangeAddress, sheet::Border_LEFT);
- callgrindDump("Namedranges-addNewFromTitles");
+ callgrindDump("sc:add_named_range_from_titles");
}
@@ -229,20 +229,20 @@ void ScPerfObj::testSheets()
callgrindStart();
xSheets->insertNewByName(aSheetName, 80);
- callgrindDump("Sheets-insertNewByName");
+ callgrindDump("sc:insert_new_sheet_by_name");
OUString aSourceSheetName = "aSheet_2";
OUString aTargetSheetName = "aCopiedSheet";
callgrindStart();
xSheets->copyByName(aSourceSheetName, aTargetSheetName, 70);
- callgrindDump("Sheets-copyByName");
+ callgrindDump("sc:copy_sheet_by_name");
uno::Reference< sheet::XSpreadsheets > xSheetsNameContainer (xSheets, UNO_QUERY_THROW);
callgrindStart();
xSheetsNameContainer->removeByName(aSheetName);
- callgrindDump("Sheets-removeByName");
+ callgrindDump("sc:remove_sheet_by_name");
}