}
}
- show_test($test_idx, $shortname);
+ show_test($test_idx, $shortname, $unicode_semantics);
if (is_array($IN_REDIRECT)) {
$temp_dir = $test_dir = $IN_REDIRECT['dir'];
echo "---> $tests ($tested [$tested_file]) done\n";
}
-function show_test($test_idx, $shortname)
+function show_test($test_idx, $shortname, $unicode_semantics)
{
global $test_cnt;
- echo "TEST $test_idx/$test_cnt [$shortname]\r";
+ $kind = $unicode_semantics ? ':U' : ':N';
+ echo "TEST$kind $test_idx/$test_cnt [$shortname]\r";
flush();
}
{
global $html_output, $html_file, $temp_target, $temp_urlbase, $unicode_and_native;
- $kind = $unicode_and_native ? ($unicode_semantics ? ':U' : ':N') : '';
+ $kind = $unicode_semantics ? ':U' : ':N';
echo "$result$kind $tested [$tested_file] $extra\n";