summaryrefslogtreecommitdiffstats
path: root/pts-core/functions/pts-functions-merge.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-08-22 13:50:28 -0400
committerMichael Larabel <michael@phx-laptop.(none)>2008-08-22 13:50:28 -0400
commiteeb8cb122c934d3c07f235c6a34c05c26114d52d (patch)
tree91d4a215979fff63034d06cb95744ecb38eb19f1 /pts-core/functions/pts-functions-merge.php
parent0d568212ccc628cd54afd6a58e236a4a2c60f0ef (diff)
downloadphoronix-test-suite-upstream-eeb8cb122c934d3c07f235c6a34c05c26114d52d.tar.gz
phoronix-test-suite-upstream-eeb8cb122c934d3c07f235c6a34c05c26114d52d.tar.xz
phoronix-test-suite-upstream-eeb8cb122c934d3c07f235c6a34c05c26114d52d.zip
pts-core: Drop pts_beep()
pts-core: If using validate-install.sh/validate-install.php, switch to the test's environment directory before calling the validation script pts-core: General code cleaning, add more documentation, and other cleaning
Diffstat (limited to 'pts-core/functions/pts-functions-merge.php')
-rw-r--r--pts-core/functions/pts-functions-merge.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/pts-core/functions/pts-functions-merge.php b/pts-core/functions/pts-functions-merge.php
index 22fcfef..bc9ce57 100644
--- a/pts-core/functions/pts-functions-merge.php
+++ b/pts-core/functions/pts-functions-merge.php
@@ -23,6 +23,7 @@
function pts_find_file($file)
{
+ // PTS Find A Saved File
if(is_file($file))
$USE_FILE = $file;
else if(is_file(SAVE_RESULTS_DIR . $file . "/composite.xml"))
@@ -38,6 +39,8 @@ function pts_find_file($file)
}
function pts_merge_test_results($OLD_RESULTS, $NEW_RESULTS)
{
+ // Merge two test results
+
// RE-READ LATEST RESULTS
$new_xml_reader = new tandem_XmlReader($NEW_RESULTS);
$new_system_hardware = $new_xml_reader->getXMLArrayValues(P_RESULTS_SYSTEM_HARDWARE);
@@ -270,6 +273,8 @@ function pts_merge_test_results($OLD_RESULTS, $NEW_RESULTS)
}
function pts_merge_batch_tests_to_line_comparison($RESULT)
{
+ // Perform analyze line comparison
+
// RE-READ LATEST RESULTS
$xml_reader = new tandem_XmlReader($RESULT);
$system_hardware = $xml_reader->getXMLArrayValues(P_RESULTS_SYSTEM_HARDWARE);