Skip to content

Commit

Permalink
Prep 9.8 Milestone 2
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellarabel committed Jun 24, 2020
1 parent 38f69de commit 423c2e1
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 5 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Expand Up @@ -2,6 +2,9 @@ PHORONIX TEST SUITE CHANGE-LOG

Phoronix Test Suite (Git)

Phoronix Test Suite 9.8.0 Milestone 2
24 June 2020

pts-core: Add client side plumbing for estimated test install time from OpenBenchmarking.org
pts-core: Add estimate-install-time sub-command, show estimated install time when installing a test
pts-core: Improve web browser selection logic for result viewer
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
# Phoronix Test Suite 9.8.0m1
# Phoronix Test Suite 9.8.0m2
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.8.0m1"
.TH phoronix-test-suite 1 "www.phoronix-test-suite.com" "9.8.0m2"
.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 @@ -48,6 +48,9 @@ This option will permanently remove a installed test by the Phoronix Test Suite.
.B benchmark [Test | Suite | OpenBenchmarking ID | Test Result] ...
This option will install the selected test(s) (if needed) and will proceed to run the test(s). This option is equivalent to running phoronix-test-suite with the install option followed by the run option. Multiple arguments can be supplied to run additional tests at the same time and save the results into one file.
.TP
.B estimate-install-time [Test | Suite | OpenBenchmarking ID | Test Result]
This option will provide estimates for test install/setup time length.
.TP
.B estimate-run-time [Test | Suite | OpenBenchmarking ID | Test Result]
This option will provide estimates for test run-time / length.
.TP
Expand Down
3 changes: 3 additions & 0 deletions documentation/phoronix-test-suite.html
Expand Up @@ -262,6 +262,9 @@ <h1>Testing</h1>
<h3>benchmark<em> [Test | Suite | OpenBenchmarking ID | Test Result] ...</em>
</h3>
<p>This option will install the selected test(s) (if needed) and will proceed to run the test(s). This option is equivalent to running phoronix-test-suite with the install option followed by the run option. Multiple arguments can be supplied to run additional tests at the same time and save the results into one file.</p>
<h3>estimate-install-time<em> [Test | Suite | OpenBenchmarking ID | Test Result]</em>
</h3>
<p>This option will provide estimates for test install/setup time length.</p>
<h3>estimate-run-time<em> [Test | Suite | OpenBenchmarking ID | Test Result]</em>
</h3>
<p>This option will provide estimates for test run-time / length.</p>
Expand Down
3 changes: 3 additions & 0 deletions documentation/phoronix-test-suite.md
Expand Up @@ -70,6 +70,9 @@ This option will permanently remove a installed test by the Phoronix Test Suite.
#### benchmark [Test | Suite | OpenBenchmarking ID | Test Result] ...
This option will install the selected test(s) (if needed) and will proceed to run the test(s). This option is equivalent to running phoronix-test-suite with the install option followed by the run option. Multiple arguments can be supplied to run additional tests at the same time and save the results into one file.

#### estimate-install-time [Test | Suite | OpenBenchmarking ID | Test Result]
This option will provide estimates for test install/setup time length.

#### estimate-run-time [Test | Suite | OpenBenchmarking ID | Test Result]
This option will provide estimates for test run-time / length.

Expand Down
3 changes: 3 additions & 0 deletions documentation/stubs/00_user_options.html
Expand Up @@ -44,6 +44,9 @@ <h1>Testing</h1>
<h3>benchmark<em> [Test | Suite | OpenBenchmarking ID | Test Result] ...</em>
</h3>
<p>This option will install the selected test(s) (if needed) and will proceed to run the test(s). This option is equivalent to running phoronix-test-suite with the install option followed by the run option. Multiple arguments can be supplied to run additional tests at the same time and save the results into one file.</p>
<h3>estimate-install-time<em> [Test | Suite | OpenBenchmarking ID | Test Result]</em>
</h3>
<p>This option will provide estimates for test install/setup time length.</p>
<h3>estimate-run-time<em> [Test | Suite | OpenBenchmarking ID | Test Result]</em>
</h3>
<p>This option will provide estimates for test run-time / length.</p>
Expand Down
6 changes: 3 additions & 3 deletions pts-core/pts-core.php
Expand Up @@ -294,9 +294,9 @@ function pts_version_codenames()
);
}

pts_define('PTS_VERSION', '9.8.0m1');
pts_define('PTS_CORE_VERSION', 9710);
pts_define('PTS_RELEASE_DATE', '20200603');
pts_define('PTS_VERSION', '9.8.0m2');
pts_define('PTS_CORE_VERSION', 9720);
pts_define('PTS_RELEASE_DATE', '20200624');
pts_define('PTS_CODENAME', 'Nesodden');

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

0 comments on commit 423c2e1

Please sign in to comment.