summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGE-LOG6
-rwxr-xr-xphoronix-test-suite4
-rw-r--r--pts-core/pts-run-cmd.php3
3 files changed, 12 insertions, 1 deletions
diff --git a/CHANGE-LOG b/CHANGE-LOG
index 2a88d53..c72dac5 100644
--- a/CHANGE-LOG
+++ b/CHANGE-LOG
@@ -26,7 +26,11 @@ Phoronix Test Suite
- Add in multicore suite of SMP-friendly tests
- Add force-install option for installing benchmarks already installed
- Add line graphing support of monitor results
-- Basic CPU and system temperature monitoring support through ACPI, if LM_Sensors is not installed and/or reporting information.
+- Basic CPU and system temperature monitoring support through ACPI, if LM_Sensors is not installed and/or reporting information
+- Improved thermal monitoring support
+- Improvements to pts-grapher with alignment
+- Add version argument for showing PTS version and code-name
+- Other bug fixes
Phoronix Test Suite 0.4.0
April 24, 2008
diff --git a/phoronix-test-suite b/phoronix-test-suite
index c79524c..6af6bc4 100755
--- a/phoronix-test-suite
+++ b/phoronix-test-suite
@@ -96,6 +96,9 @@ case "$1" in
"initial-config")
$PHP_BIN pts-core/pts-run-cmd.php INITIAL_CONFIG
;;
+"version")
+ $PHP_BIN pts-core/pts-run-cmd.php VERSION
+ ;;
"login")
$PHP_BIN pts-core/pts-run-cmd.php LOGIN
;;
@@ -122,6 +125,7 @@ case "$1" in
echo "system-info: Dump detected software and hardware information detected by PTS"
echo "upload <Saved File>: Upload these results to be shared globally"
echo "show-result <Saved File>: Show this result file in your web browser"
+ echo "version: Report the Phoronix Test Suite version and code-name"
echo "login: Enter in your PTS Global log-in information for uploading results"
echo "\n"
;;
diff --git a/pts-core/pts-run-cmd.php b/pts-core/pts-run-cmd.php
index 00ba39e..bbb3b24 100644
--- a/pts-core/pts-run-cmd.php
+++ b/pts-core/pts-run-cmd.php
@@ -312,6 +312,9 @@ switch($COMMAND)
else
echo "\nPTS Global Account Not Found.\n";
break;
+ case "VERSION":
+ echo "\nPhoronix Test Suite v" . PTS_VERSION . " (" . PTS_CODENAME . ")\n\n";
+ break;
default:
echo "Phoronix Test Suite: Internal Error. Command Not Recognized ($COMMAND).\n";
}