Summary
Description: Phoronix Test Suite open-source benchmarking development
Last Change: Tue 5/21/13 15:49
Recent Commits
>
--git a/pts-core/functions/pts-functions-run.php b/pts-core/functions/pts-functions-run.php
index f57a49e..0e20038 100644
--- a/pts-core/functions/pts-functions-run.php
+++ b/pts-core/functions/pts-functions-run.php
@@ -205,15 +205,15 @@ function pts_generate_test_notes($test_type)
if(!empty($aa_level))
{
- pts_add_test_note(" \nAntialiasing: $aa_level.");
+ pts_add_test_note("Antialiasing: $aa_level");
}
if(!empty($af_level))
{
- pts_add_test_note(" \nAnisotropic Filtering: $af_level.");
+ pts_add_test_note("Anisotropic Filtering: $af_level");
}
}
- return implode(" \n", $GLOBALS["TEST_NOTES_ARRAY"]);
+ return implode(". \n", $GLOBALS["TEST_NOTES_ARRAY"]);
}
function pts_input_string_to_identifier($input)
{
diff --git a/pts-core/functions/pts-functions_system_cpu.php b/pts-core/functions/pts-functions_system_cpu.php
index b49f18c..7a6f44b 100644
--- a/pts-core/functions/pts-functions_system_cpu.php
+++ b/pts-core/functions/pts-functions_system_cpu.php
@@ -227,15 +227,15 @@ function pts_processor_power_savings_enabled()
if(strpos($cpu, "AMD") !== false)
{
- $return_string = "AMD Cool n Quiet was enabled.";
+ $return_string = "AMD Cool n Quiet was enabled";
}
else if(strpos($cpu, "Intel") !== false)
{
- $return_string = "Intel SpeedStep Technology was enabled.";
+ $return_string = "Intel SpeedStep Technology was enabled";
}
else
{
- $return_string = "The CPU was in a power-savings mode.";
+ $return_string = "The CPU was in a power-savings mode";
}
}
}
diff --git a/pts-core/functions/pts-functions_system_hardware.php b/pts-core/functions/pts-functions_system_hardware.php
index 33cacd7..149c530 100644
--- a/pts-core/functions/pts-functions_system_hardware.php
+++ b/pts-core/functions/pts-functions_system_hardware.php
@@ -402,7 +402,7 @@ function system_power_mode()
if($power_state == "off-line")
{
- $return_status = "This computer was running on battery power.";
+ $return_status = "This computer was running on battery power";
}
return $return_status;
diff --git a/pts-core/functions/pts-functions_system_software.php b/pts-core/functions/pts-functions_system_software.php
index 0ff2956..806e8d0 100644
--- a/pts-core/functions/pts-functions_system_software.php
+++ b/pts-core/functions/pts-functions_system_software.php
@@ -42,7 +42,7 @@ function system_virtualized_mode()
if(!empty($virtualized))
{
- $virtualized = "This system was using " . $virtualized . " virtualization.";
+ $virtualized = "This system was using " . $virtualized . " virtualization";
}
return $virtualized;
@@ -309,7 +309,7 @@ function pts_process_running_string($process_arr)
$p_string .= "were";
}
- $p_string .= " running on this system. ";
+ $p_string .= " running on this system";
}
return $p_string;
<
Copyright © 2013 by Phoronix Media