summaryrefslogtreecommitdiffstats
path: root/pts-core/functions/pts-functions-run.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-11-01 21:32:32 -0400
committerMichael Larabel <michael@phx-laptop.(none)>2008-11-01 21:32:32 -0400
commit7e08a30e3480234490e52936b5efb0303f03d82c (patch)
tree0cdbb8d47a4826586225b8df56acbb9dd23a9038 /pts-core/functions/pts-functions-run.php
parent8400f893094c8f319bd0a6d5d0926f61eb02ce1a (diff)
downloadphoronix-test-suite-upstream-7e08a30e3480234490e52936b5efb0303f03d82c.tar.gz
phoronix-test-suite-upstream-7e08a30e3480234490e52936b5efb0303f03d82c.tar.xz
phoronix-test-suite-upstream-7e08a30e3480234490e52936b5efb0303f03d82c.zip
pts-core: Various small tweaks to pts-core
Diffstat (limited to 'pts-core/functions/pts-functions-run.php')
-rw-r--r--pts-core/functions/pts-functions-run.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/pts-core/functions/pts-functions-run.php b/pts-core/functions/pts-functions-run.php
index 358f1c9..a047976 100644
--- a/pts-core/functions/pts-functions-run.php
+++ b/pts-core/functions/pts-functions-run.php
@@ -224,11 +224,11 @@ function pts_generate_test_notes($test_type)
if(!empty($aa_level))
{
- pts_add_test_note("Antialiasing: $aa_level");
+ pts_add_test_note("Antialiasing: " . $aa_level);
}
if(!empty($af_level))
{
- pts_add_test_note("Anisotropic Filtering: $af_level");
+ pts_add_test_note("Anisotropic Filtering: " . $af_level);
}
}
@@ -306,7 +306,6 @@ function pts_recurse_call_tests($tests_to_run, $arguments_array, $save_results =
if(is_suite($tests_to_run[$i]))
{
$xml_parser = new tandem_XmlReader(pts_location_suite($tests_to_run[$i]));
-
$tests_in_suite = $xml_parser->getXMLArrayValues(P_SUITE_TEST_NAME);
$sub_arguments = $xml_parser->getXMLArrayValues(P_SUITE_TEST_ARGUMENTS);
$sub_arguments_description = $xml_parser->getXMLArrayValues(P_SUITE_TEST_DESCRIPTION);