function perfmon_get_testlist in Performance monitor 8
Same name and namespace in other branches
- 7 perfmon.inc \perfmon_get_testlist()
Get core performance tests.
Return value
array Array of checks indexed by test name. e.g.: 'perfmon' => array( 'test_name' => array(...) )
2 calls to perfmon_get_testlist()
- PerfmonController::mainPage in src/
Controller/ PerfmonController.php - Main perform results page callback.
- PerfmonRunForm::submitForm in src/
Form/ PerfmonRunForm.php - Form submission handler.
File
- ./
perfmon.module, line 317 - Stand-alone perfmon test system.
Code
function perfmon_get_testlist() {
$tests = _perfmon_performance_tests();
return $tests;
}