summaryrefslogtreecommitdiffstats
path: root/pts-core/functions/pts-functions-run.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-11-17 20:40:25 -0500
committerMichael Larabel <michael@phx-laptop.(none)>2008-11-17 20:40:25 -0500
commitc1e75d2b0ee9ab53367879be8f8d7b5cac25f2ee (patch)
tree170a66bf31ac09e4f8ce20d7ed860c0d96e11e9e /pts-core/functions/pts-functions-run.php
parent5f9cf59a784c9c9f9ba40c58ba990117e6a92a03 (diff)
downloadphoronix-test-suite-upstream-c1e75d2b0ee9ab53367879be8f8d7b5cac25f2ee.tar.gz
phoronix-test-suite-upstream-c1e75d2b0ee9ab53367879be8f8d7b5cac25f2ee.tar.xz
phoronix-test-suite-upstream-c1e75d2b0ee9ab53367879be8f8d7b5cac25f2ee.zip
pts-core: Standardize sw_* functions
Diffstat (limited to 'pts-core/functions/pts-functions-run.php')
-rw-r--r--pts-core/functions/pts-functions-run.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/pts-core/functions/pts-functions-run.php b/pts-core/functions/pts-functions-run.php
index d687dd9..8d99a3a 100644
--- a/pts-core/functions/pts-functions-run.php
+++ b/pts-core/functions/pts-functions-run.php
@@ -227,7 +227,7 @@ function pts_generate_test_notes($test_type)
// Power Saving Technologies?
pts_add_test_note(hw_cpu_power_savings_enabled());
pts_add_test_note(hw_sys_power_mode());
- pts_add_test_note(system_virtualized_mode());
+ pts_add_test_note(sw_os_virtualized_mode());
if($test_type == "Graphics" || $test_type == "System")
{
@@ -705,12 +705,12 @@ function pts_global_auto_tags($extra_attr = null)
array_push($tags_array, "NVIDIA");
}
- if(kernel_arch() == "x86_64" && IS_LINUX)
+ if(sw_os_architecture() == "x86_64" && IS_LINUX)
{
array_push($tags_array, "64-bit Linux");
}
- $os = operating_system_release();
+ $os = sw_os_release();
if($os != "Unknown")
{
array_push($tags_array, $os);