Skip to content

Commit

Permalink
Phoronix Test Suite 9.6 Milestone 1
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellarabel committed Mar 24, 2020
1 parent dc5b80a commit a9649d3
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 6 deletions.
3 changes: 2 additions & 1 deletion ChangeLog
@@ -1,6 +1,7 @@
PHORONIX TEST SUITE CHANGE-LOG

Phoronix Test Suite (Git)
Phoronix Test Suite 9.6.0 Milestone 1
24 March 2020

pts-core: Add new analyze-run-times sub-command
pts-core: Allow hiding results from within the result viewer
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
# Phoronix Test Suite 9.4.1
# Phoronix Test Suite 9.6.0m1
https://www.phoronix-test-suite.com/

The **Phoronix Test Suite** is the most comprehensive testing and benchmarking
Expand Down
5 changes: 4 additions & 1 deletion documentation/man-pages/phoronix-test-suite.1
@@ -1,4 +1,4 @@
.TH phoronix-test-suite 1 "www.phoronix-test-suite.com" "9.4.1"
.TH phoronix-test-suite 1 "www.phoronix-test-suite.com" "9.6.0m1"
.SH NAME
phoronix-test-suite \- The Phoronix Test Suite is an extensible open-source platform for performing testing and performance evaluation.
.SH SYNOPSIS
Expand Down Expand Up @@ -230,6 +230,9 @@ This option can be used for validating a Phoronix Test Suite test profile as bei
This option can be used for validating a Phoronix Test Suite test suite as being compliant against the OpenBenchmarking.org specification.
.TP
.SH RESULT MANAGEMENT
.B analyze-run-times [Test Result]
This option will read a saved test results file and print the statistics about how long the testing took to complete.
.TP
.B auto-sort-result-file [Test Result]
This option is used if you wish to automatically attempt to sort the results by their result identifier string.
.TP
Expand Down
3 changes: 3 additions & 0 deletions documentation/phoronix-test-suite.html
Expand Up @@ -477,6 +477,9 @@ <h3>validate-test-suite<em> [Suite]</em>
</h3>
<p>This option can be used for validating a Phoronix Test Suite test suite as being compliant against the OpenBenchmarking.org specification.</p>
<h1>Result Management</h1>
<h3>analyze-run-times<em> [Test Result]</em>
</h3>
<p>This option will read a saved test results file and print the statistics about how long the testing took to complete.</p>
<h3>auto-sort-result-file<em> [Test Result]</em>
</h3>
<p>This option is used if you wish to automatically attempt to sort the results by their result identifier string.</p>
Expand Down
3 changes: 3 additions & 0 deletions documentation/phoronix-test-suite.md
Expand Up @@ -257,6 +257,9 @@ This option can be used for validating a Phoronix Test Suite test suite as being


## Result Management
#### analyze-run-times [Test Result]
This option will read a saved test results file and print the statistics about how long the testing took to complete.

#### auto-sort-result-file [Test Result]
This option is used if you wish to automatically attempt to sort the results by their result identifier string.

Expand Down
3 changes: 3 additions & 0 deletions documentation/stubs/00_user_options.html
Expand Up @@ -226,6 +226,9 @@ <h3>validate-test-suite<em> [Suite]</em>
</h3>
<p>This option can be used for validating a Phoronix Test Suite test suite as being compliant against the OpenBenchmarking.org specification.</p>
<h1>Result Management</h1>
<h3>analyze-run-times<em> [Test Result]</em>
</h3>
<p>This option will read a saved test results file and print the statistics about how long the testing took to complete.</p>
<h3>auto-sort-result-file<em> [Test Result]</em>
</h3>
<p>This option is used if you wish to automatically attempt to sort the results by their result identifier string.</p>
Expand Down
6 changes: 3 additions & 3 deletions pts-core/pts-core.php
Expand Up @@ -288,9 +288,9 @@ function pts_version_codenames()
);
}

pts_define('PTS_VERSION', '9.6.0m0');
pts_define('PTS_CORE_VERSION', 9500);
pts_define('PTS_RELEASE_DATE', '20200304');
pts_define('PTS_VERSION', '9.6.0m1');
pts_define('PTS_CORE_VERSION', 9510);
pts_define('PTS_RELEASE_DATE', '20200324');
pts_define('PTS_CODENAME', 'Nittedal');

pts_define('PTS_IS_CLIENT', (defined('PTS_MODE') && strstr(PTS_MODE, 'CLIENT') !== false));
Expand Down

0 comments on commit a9649d3

Please sign in to comment.