Lines Matching refs:tested

1099 function error_report($testname, $logname, $tested)  argument
1106 echo $testname . "(1) : $tested\n";
1107 echo $logname . "(1) : $tested\n";
1110 echo $testname . ":1: $tested\n";
1111 echo $logname . ":1: $tested\n";
1424 $tested = trim($section_text['TEST']);
1440 show_result('SKIP', $tested, $tested_file, "reason: CGI not available");
1443 junit_mark_test_as('SKIP', $shortname, $tested, 0, 'CGI not available');
1459 show_result('SKIP', $tested, $tested_file, "reason: phpdbg not available");
1462 junit_mark_test_as('SKIP', $shortname, $tested, 0, 'phpdbg not available');
1526 $tested = $IN_REDIRECT['prefix'] . ' ' . trim($section_text['TEST']);
1638 show_result('SKIP', $tested, $tested_file, "reason: $m[1]", $temp_filenames);
1640 show_result('SKIP', $tested, $tested_file, '', $temp_filenames);
1648 junit_mark_test_as('SKIP', $shortname, $tested, null, $message);
1677 show_result('SKIP', $tested, $tested_file, "reason: $message", $temp_filenames);
1678 junit_mark_test_as('SKIP', $shortname, $tested, null, $message);
1705 show_redirect_start($IN_REDIRECT['TESTS'], $tested, $tested_file);
1712 run_all_tests($test_files, $redirenv, $tested);
1714 show_redirect_ends($IN_REDIRECT['TESTS'], $tested, $tested_file);
1719 junit_mark_test_as('PASS', $shortname, $tested);
1752 junit_mark_test_as('BORK', $shortname, $tested, null, $bork_info);
1817 junit_mark_test_as('BORK', $shortname, $tested, null, 'empty $request');
1851 junit_mark_test_as('BORK', $shortname, $tested, null, 'empty $request');
1946 'test_name' => (is_array($IN_REDIRECT) ? $IN_REDIRECT['via'] : '') . $tested . " [$tested_file]",
2110 show_result("PASS", $tested, $tested_file, '', $temp_filenames);
2111 junit_mark_test_as('PASS', $shortname, $tested);
2136 show_result("PASS", $tested, $tested_file, '', $temp_filenames);
2137 junit_mark_test_as('PASS', $shortname, $tested);
2218 error_report($file, $log_filename, $tested);
2226 show_result(implode('&', $restype), $tested, $tested_file, $info, $temp_filenames);
2231 'test_name' => (is_array($IN_REDIRECT) ? $IN_REDIRECT['via'] : '') . $tested . " [$tested_file]",
2240 …junit_mark_test_as($restype, str_replace(TEST_PHP_SRCDIR . '/', '', $tested_file), $tested, null, …
2643 function show_redirect_start($tests, $tested, $tested_file) argument
2648 …fwrite($html_file, "<tr><td colspan='3'>---&gt; $tests ($tested [$tested_file]) begin</td></tr>\n"…
2652 echo "REDIRECT $tests ($tested [$tested_file]) begin\n";
2659 function show_redirect_ends($tests, $tested, $tested_file) argument
2664 …fwrite($html_file, "<tr><td colspan='3'>---&gt; $tests ($tested [$tested_file]) done</td></tr>\n");
2668 echo "REDIRECT $tests ($tested [$tested_file]) done\n";
2686 function show_result($result, $tested, $tested_file, $extra = '', $temp_filenames = null) argument
2691 echo "$result $tested [$tested_file] $extra\n";
2701 $tested = "<a href='$url'>$tested</a>";
2734 "<td>$tested</td>" .