Lines Matching refs:tested

1053 function error_report($testname, $logname, $tested)  argument
1060 echo $testname . "(1) : $tested\n";
1061 echo $logname . "(1) : $tested\n";
1064 echo $testname . ":1: $tested\n";
1065 echo $logname . ":1: $tested\n";
1333 $tested = trim($section_text['TEST']);
1354 show_result('SKIP', $tested, $tested_file, "reason: CGI not available");
1357 junit_mark_test_as('SKIP', $shortname, $tested, 0, 'CGI not available');
1420 $tested = $IN_REDIRECT['prefix'] . ' ' . trim($section_text['TEST']);
1522 show_result('SKIP', $tested, $tested_file, "reason: $m[1]", $temp_filenames);
1524 show_result('SKIP', $tested, $tested_file, '', $temp_filenames);
1536 junit_mark_test_as('SKIP', $shortname, $tested, null, $message);
1560 show_result('SKIP', $tested, $tested_file, "reason: $message", $temp_filenames);
1561 junit_mark_test_as('SKIP', $shortname, $tested, null, $message);
1588 show_redirect_start($IN_REDIRECT['TESTS'], $tested, $tested_file);
1595 run_all_tests($test_files, $redirenv, $tested);
1597 show_redirect_ends($IN_REDIRECT['TESTS'], $tested, $tested_file);
1602 junit_mark_test_as('PASS', $shortname, $tested);
1635 junit_mark_test_as('BORK', $shortname, $tested, null, $bork_info);
1690 junit_mark_test_as('BORK', $shortname, $tested, null, 'empty $request');
1724 junit_mark_test_as('BORK', $shortname, $tested, null, 'empty $request');
2001 show_result("PASS", $tested, $tested_file, '', $temp_filenames);
2002 junit_mark_test_as('PASS', $shortname, $tested);
2031 show_result("PASS", $tested, $tested_file, '', $temp_filenames);
2032 junit_mark_test_as('PASS', $shortname, $tested);
2109 error_report($file, $log_filename, $tested);
2113 show_result(implode('&', $restype), $tested, $tested_file, $info, $temp_filenames);
2118 'test_name' => (is_array($IN_REDIRECT) ? $IN_REDIRECT['via'] : '') . $tested . " [$tested_file]",
2131 …junit_mark_test_as($restype, str_replace($cwd . '/', '', $tested_file), $tested, null, $info, $dif…
2520 function show_redirect_start($tests, $tested, $tested_file) argument
2525 …fwrite($html_file, "<tr><td colspan='3'>---&gt; $tests ($tested [$tested_file]) begin</td></tr>\n"…
2529 echo "REDIRECT $tests ($tested [$tested_file]) begin\n";
2536 function show_redirect_ends($tests, $tested, $tested_file) argument
2541 …fwrite($html_file, "<tr><td colspan='3'>---&gt; $tests ($tested [$tested_file]) done</td></tr>\n");
2545 echo "REDIRECT $tests ($tested [$tested_file]) done\n";
2563 function show_result($result, $tested, $tested_file, $extra = '', $temp_filenames = null) argument
2568 echo "$result $tested [$tested_file] $extra\n";
2578 $tested = "<a href='$url'>$tested</a>";
2611 "<td>$tested</td>" .