51 lines
1.1 KiB
PHP
51 lines
1.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Test if XHProf is available and working.
|
|
*/
|
|
|
|
$xhprof_root_dir = '/usr/share/php';
|
|
$success = TRUE;
|
|
|
|
xhprof_enable();
|
|
$data = xhprof_disable();
|
|
|
|
if (isset($data['main()==>xhprof_disable'])) {
|
|
print "XHProf profiling working.\r\n";
|
|
}
|
|
else {
|
|
print "XHProf profiling not working.\r\n";
|
|
$success = FALSE;
|
|
}
|
|
|
|
include $xhprof_root_dir . '/xhprof_lib/utils/xhprof_lib.php';
|
|
include $xhprof_root_dir . '/xhprof_lib/utils/xhprof_runs.php';
|
|
|
|
$xhprof_runs = new XHProfRuns_Default();
|
|
$run_id = $xhprof_runs->save_run($data, "xhprof_testing");
|
|
$output_dir = ini_get("xhprof.output_dir");
|
|
$filename = "$output_dir/$run_id.xhprof_testing.xhprof";
|
|
|
|
if (file_exists($filename)) {
|
|
print "XHProf PHP library writing to output directory.\r\n";
|
|
}
|
|
else {
|
|
print "XHProf PHP library not working.\r\n";
|
|
$success = FALSE;
|
|
}
|
|
|
|
ob_start();
|
|
include $xhprof_root_dir . '/xhprof_html/index.php';
|
|
$html = ob_get_clean();
|
|
if (strpos($html, "?run=$run_id") !== FALSE) {
|
|
print "XHProf UI working.\r\n";
|
|
}
|
|
else {
|
|
print "XHProf UI not working.\r\n";
|
|
$success = FALSE;
|
|
}
|
|
|
|
if (!$success) {
|
|
exit(1);
|
|
}
|