Lines Matching refs:tested
1050 function error_report($testname, $logname, $tested) argument
1057 echo $testname . "(1) : $tested\n";
1058 echo $logname . "(1) : $tested\n";
1061 echo $testname . ":1: $tested\n";
1062 echo $logname . ":1: $tested\n";
1330 $tested = trim($section_text['TEST']);
1351 show_result('SKIP', $tested, $tested_file, "reason: CGI not available");
1354 junit_mark_test_as('SKIP', $shortname, $tested, 0, 'CGI not available');
1417 $tested = $IN_REDIRECT['prefix'] . ' ' . trim($section_text['TEST']);
1519 show_result('SKIP', $tested, $tested_file, "reason: $m[1]", $temp_filenames);
1521 show_result('SKIP', $tested, $tested_file, '', $temp_filenames);
1533 junit_mark_test_as('SKIP', $shortname, $tested, null, $message);
1557 show_result('SKIP', $tested, $tested_file, "reason: $message", $temp_filenames);
1558 junit_mark_test_as('SKIP', $shortname, $tested, null, $message);
1585 show_redirect_start($IN_REDIRECT['TESTS'], $tested, $tested_file);
1592 run_all_tests($test_files, $redirenv, $tested);
1594 show_redirect_ends($IN_REDIRECT['TESTS'], $tested, $tested_file);
1599 junit_mark_test_as('PASS', $shortname, $tested);
1632 junit_mark_test_as('BORK', $shortname, $tested, null, $bork_info);
1687 junit_mark_test_as('BORK', $shortname, $tested, null, 'empty $request');
1721 junit_mark_test_as('BORK', $shortname, $tested, null, 'empty $request');
1998 show_result("PASS", $tested, $tested_file, '', $temp_filenames);
1999 junit_mark_test_as('PASS', $shortname, $tested);
2028 show_result("PASS", $tested, $tested_file, '', $temp_filenames);
2029 junit_mark_test_as('PASS', $shortname, $tested);
2106 error_report($file, $log_filename, $tested);
2110 show_result(implode('&', $restype), $tested, $tested_file, $info, $temp_filenames);
2115 'test_name' => (is_array($IN_REDIRECT) ? $IN_REDIRECT['via'] : '') . $tested . " [$tested_file]",
2128 …junit_mark_test_as($restype, str_replace($cwd . '/', '', $tested_file), $tested, null, $info, $dif…
2517 function show_redirect_start($tests, $tested, $tested_file) argument
2522 …fwrite($html_file, "<tr><td colspan='3'>---> $tests ($tested [$tested_file]) begin</td></tr>\n"…
2526 echo "REDIRECT $tests ($tested [$tested_file]) begin\n";
2533 function show_redirect_ends($tests, $tested, $tested_file) argument
2538 …fwrite($html_file, "<tr><td colspan='3'>---> $tests ($tested [$tested_file]) done</td></tr>\n");
2542 echo "REDIRECT $tests ($tested [$tested_file]) done\n";
2560 function show_result($result, $tested, $tested_file, $extra = '', $temp_filenames = null) argument
2565 echo "$result $tested [$tested_file] $extra\n";
2575 $tested = "<a href='$url'>$tested</a>";
2608 "<td>$tested</td>" .