PATH:
opt
/
alt
/
tests
/
alt-php53-pecl-xhprof-legacy_0.9.4-2.el8
/
tests
--TEST-- XHPRrof: Basic Profiling Test Author: Kannan --FILE-- <?php include_once dirname(__FILE__).'/common.php'; function bar() { return 1; } function foo($x) { $sum = 0; for ($idx = 0; $idx < 2; $idx++) { $sum += bar(); } return strlen("hello: {$x}"); } // 1: Sanity test a simple profile run xhprof_enable(); foo("this is a test"); $output = xhprof_disable(); echo "Part 1: Default Flags\n"; print_canonical($output); echo "\n"; // 2: Sanity test profiling options xhprof_enable(XHPROF_FLAGS_CPU); foo("this is a test"); $output = xhprof_disable(); echo "Part 2: CPU\n"; print_canonical($output); echo "\n"; // 3: Sanity test profiling options xhprof_enable(XHPROF_FLAGS_NO_BUILTINS); foo("this is a test"); $output = xhprof_disable(); echo "Part 3: No Builtins\n"; print_canonical($output); echo "\n"; // 4: Sanity test profiling options xhprof_enable(XHPROF_FLAGS_MEMORY); foo("this is a test"); $output = xhprof_disable(); echo "Part 4: Memory\n"; print_canonical($output); echo "\n"; // 5: Sanity test combo of profiling options xhprof_enable(XHPROF_FLAGS_MEMORY + XHPROF_FLAGS_CPU); foo("this is a test"); $output = xhprof_disable(); echo "Part 5: Memory & CPU\n"; print_canonical($output); echo "\n"; ?> --EXPECT-- Part 1: Default Flags foo==>bar : ct= 2; wt=*; foo==>strlen : ct= 1; wt=*; main() : ct= 1; wt=*; main()==>foo : ct= 1; wt=*; main()==>xhprof_disable : ct= 1; wt=*; Part 2: CPU foo==>bar : cpu=*; ct= 2; wt=*; foo==>strlen : cpu=*; ct= 1; wt=*; main() : cpu=*; ct= 1; wt=*; main()==>foo : cpu=*; ct= 1; wt=*; main()==>xhprof_disable : cpu=*; ct= 1; wt=*; Part 3: No Builtins foo==>bar : ct= 2; wt=*; main() : ct= 1; wt=*; main()==>foo : ct= 1; wt=*; Part 4: Memory foo==>bar : ct= 2; mu=*; pmu=*; wt=*; foo==>strlen : ct= 1; mu=*; pmu=*; wt=*; main() : ct= 1; mu=*; pmu=*; wt=*; main()==>foo : ct= 1; mu=*; pmu=*; wt=*; main()==>xhprof_disable : ct= 1; mu=*; pmu=*; wt=*; Part 5: Memory & CPU foo==>bar : cpu=*; ct= 2; mu=*; pmu=*; wt=*; foo==>strlen : cpu=*; ct= 1; mu=*; pmu=*; wt=*; main() : cpu=*; ct= 1; mu=*; pmu=*; wt=*; main()==>foo : cpu=*; ct= 1; mu=*; pmu=*; wt=*; main()==>xhprof_disable : cpu=*; ct= 1; mu=*; pmu=*; wt=*;
[-] xhprof_005.phpt
[edit]
[-] xhprof_002.phpt
[edit]
[-] xhprof_007.phpt
[edit]
[-] xhprof_004_inc.php
[edit]
[-] xhprof_004.phpt
[edit]
[-] xhprof_001.phpt
[edit]
[-] xhprof_003.phpt
[edit]
[-] xhprof_004_require.php
[edit]
[+]
..
[-] xhprof_008.phpt
[edit]
[-] common.php
[edit]
[-] xhprof_006.phpt
[edit]