You are here

function perfmon_get_testlist in Performance monitor 7

Same name and namespace in other branches
  1. 8 perfmon.module \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()
perfmon_page in ./perfmon.pages.inc
Page callback for run & review.
perfmon_run_form_submit in ./perfmon.pages.inc
Run all tests in batch.

File

./perfmon.inc, line 331
Stand-alone perfmon test system.

Code

function perfmon_get_testlist() {
  $tests = _perfmon_performance_tests();
  return $tests;
}