summaryrefslogtreecommitdiffstats
path: root/pts-core/functions/pts-functions-run.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-11-29 12:09:16 -0500
committerMichael Larabel <michael@phx-laptop.(none)>2008-11-29 12:09:16 -0500
commit89998c08bffeb724ec2109b479f96f26a1745ad2 (patch)
treec174cc74e9af9d1723d00a5a4466763870a7d166 /pts-core/functions/pts-functions-run.php
parent260b513e307a2d87d4ebead3f2cac86544df492a (diff)
downloadphoronix-test-suite-upstream-89998c08bffeb724ec2109b479f96f26a1745ad2.tar.gz
phoronix-test-suite-upstream-89998c08bffeb724ec2109b479f96f26a1745ad2.tar.xz
phoronix-test-suite-upstream-89998c08bffeb724ec2109b479f96f26a1745ad2.zip
pts-core: Add and implement RawString to XML results specification for storing raw result values from all trial runs
Diffstat (limited to 'pts-core/functions/pts-functions-run.php')
-rw-r--r--pts-core/functions/pts-functions-run.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/pts-core/functions/pts-functions-run.php b/pts-core/functions/pts-functions-run.php
index f4b7978..b9178c3 100644
--- a/pts-core/functions/pts-functions-run.php
+++ b/pts-core/functions/pts-functions-run.php
@@ -386,6 +386,7 @@ function pts_record_test_result(&$tandem_xml, $result, $identifier, $tandem_id =
$tandem_xml->addXmlObject(P_RESULTS_TEST_ARGUMENTS, $tandem_id, $result->get_attribute("EXTRA_ARGUMENTS"));
$tandem_xml->addXmlObject(P_RESULTS_RESULTS_GROUP_IDENTIFIER, $tandem_id, $identifier, 5);
$tandem_xml->addXmlObject(P_RESULTS_RESULTS_GROUP_VALUE, $tandem_id, $result->get_result(), 5);
+ $tandem_xml->addXmlObject(P_RESULTS_RESULTS_GROUP_RAW, $tandem_id, $result->get_trial_results_string(), 5);
pts_set_assignment("TEST_RAN", true);
}