summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-04-27 22:05:49 -0400
committerMichael Larabel <michael@phx-laptop.(none)>2008-04-27 22:05:49 -0400
commit41955f23861d22df2cd9b6fc4e8361bb084be80e (patch)
tree0e01e8fec62fd3a3c1bd485a64ce376c56e3f1fb
parent7ea2ec5930b15ea83b655a8c7ed386e9d069d1d6 (diff)
downloadphoronix-test-suite-upstream-41955f23861d22df2cd9b6fc4e8361bb084be80e.tar.gz
phoronix-test-suite-upstream-41955f23861d22df2cd9b6fc4e8361bb084be80e.tar.xz
phoronix-test-suite-upstream-41955f23861d22df2cd9b6fc4e8361bb084be80e.zip
Update change-log and add version argument for showing version and
code-name.
-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";
}