Lines Matching refs:tested

1184 function error_report($testname, $logname, $tested)  argument
1191 echo $testname . "(1) : $tested\n";
1192 echo $logname . "(1) : $tested\n";
1195 echo $testname . ":1: $tested\n";
1196 echo $logname . ":1: $tested\n";
1931 $tested = trim($section_text['TEST']);
1947 show_result('SKIP', $tested, $tested_file, "reason: CGI not available");
1950 junit_mark_test_as('SKIP', $shortname, $tested, 0, 'CGI not available');
1971 show_result('SKIP', $tested, $tested_file, "reason: phpdbg not available");
1974 junit_mark_test_as('SKIP', $shortname, $tested, 0, 'phpdbg not available');
2040 $tested = $IN_REDIRECT['prefix'] . ' ' . trim($section_text['TEST']);
2153 show_result('SKIP', $tested, $tested_file, "reason: $m[1]", $temp_filenames);
2155 show_result('SKIP', $tested, $tested_file, '', $temp_filenames);
2163 junit_mark_test_as('SKIP', $shortname, $tested, null, $message);
2191 show_result('SKIP', $tested, $tested_file, "reason: $message", $temp_filenames);
2192 junit_mark_test_as('SKIP', $shortname, $tested, null, $message);
2219 show_redirect_start($IN_REDIRECT['TESTS'], $tested, $tested_file);
2226 run_all_tests($test_files, $redirenv, $tested);
2228 show_redirect_ends($IN_REDIRECT['TESTS'], $tested, $tested_file);
2233 junit_mark_test_as('PASS', $shortname, $tested);
2266 junit_mark_test_as('BORK', $shortname, $tested, null, $bork_info);
2339 junit_mark_test_as('BORK', $shortname, $tested, null, 'empty $request');
2373 junit_mark_test_as('BORK', $shortname, $tested, null, 'empty $request');
2465 … 'test_name' => (is_array($IN_REDIRECT) ? $IN_REDIRECT['via'] : '') . $tested . " [$tested_file]",
2636 show_result("PASS", $tested, $tested_file, '', $temp_filenames);
2637 junit_mark_test_as('PASS', $shortname, $tested);
2666 show_result("PASS", $tested, $tested_file, '', $temp_filenames);
2667 junit_mark_test_as('PASS', $shortname, $tested);
2749 error_report($file, $log_filename, $tested);
2757 show_result(implode('&', $restype), $tested, $tested_file, $info, $temp_filenames);
2762 … 'test_name' => (is_array($IN_REDIRECT) ? $IN_REDIRECT['via'] : '') . $tested . " [$tested_file]",
2771 junit_mark_test_as($restype, $shortname, $tested, null, $info, $diff);
3203 function show_redirect_start($tests, $tested, $tested_file) argument
3208 …fwrite($html_file, "<tr><td colspan='3'>---&gt; $tests ($tested [$tested_file]) begin</td></tr>\n"…
3212 echo "REDIRECT $tests ($tested [$tested_file]) begin\n";
3218 function show_redirect_ends($tests, $tested, $tested_file) argument
3223 …fwrite($html_file, "<tr><td colspan='3'>---&gt; $tests ($tested [$tested_file]) done</td></tr>\n");
3227 echo "REDIRECT $tests ($tested [$tested_file]) done\n";
3261 function show_result($result, $tested, $tested_file, $extra = '', $temp_filenames = null) argument
3266 echo "$result $tested [$tested_file] $extra\n";
3275 $tested = "<a href='$url'>$tested</a>";
3309 "<td>$tested</td>" .