Skip to content

Commit

Permalink
Prep for 9.8 M1
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellarabel committed Jun 3, 2020
1 parent 72fa501 commit 2b46ff2
Show file tree
Hide file tree
Showing 8 changed files with 446 additions and 1,045 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.8.0 Milestone 1
3 June 2020

pts-core: When an install fails, try a newer minor version update to that test profile if available (fixes broken download mirrors, etc)
pts-core: When a newer minor version of a test profile is installed and a requested (older) one is not, use the newer compatible version
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
# Phoronix Test Suite 9.6.1
# Phoronix Test Suite 9.8.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.6.1"
.TH phoronix-test-suite 1 "www.phoronix-test-suite.com" "9.8.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 @@ -192,6 +192,9 @@ This option will list all available test profiles that are available from the en
.B search
This option provides command-line searching abilities for test profiles / test suites / test results. The search query can be passed as a parameter otherwise the user is prompted to input their search query..
.TP
.B test-to-suite-map
This option will list all test profiles and any test suites each test belongs to.
.TP
.SH ASSET CREATION
.B build-suite
This option will guide the user through the process of generating their own test suite, which they can then run. Optionally, passed as arguments can be the test(s) or suite(s) to add to the suite to be created, instead of being prompted through the process.
Expand Down
491 changes: 145 additions & 346 deletions documentation/phoronix-test-suite.html

Large diffs are not rendered by default.

491 changes: 145 additions & 346 deletions documentation/phoronix-test-suite.md

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions documentation/stubs/00_user_options.html
Expand Up @@ -188,6 +188,9 @@ <h3>list-unsupported-tests<em> </em>
<h3>search<em> </em>
</h3>
<p>This option provides command-line searching abilities for test profiles / test suites / test results. The search query can be passed as a parameter otherwise the user is prompted to input their search query..</p>
<h3>test-to-suite-map<em> </em>
</h3>
<p>This option will list all test profiles and any test suites each test belongs to.</p>
<h1>Asset Creation</h1>
<h3>build-suite<em> </em>
</h3>
Expand Down
488 changes: 142 additions & 346 deletions documentation/stubs/55_virtual_suites.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions pts-core/pts-core.php
Expand Up @@ -294,10 +294,10 @@ function pts_version_codenames()
);
}

pts_define('PTS_VERSION', '9.6.1');
pts_define('PTS_CORE_VERSION', 9610);
pts_define('PTS_RELEASE_DATE', '20200525');
pts_define('PTS_CODENAME', 'Nittedal');
pts_define('PTS_VERSION', '9.8.0m1');
pts_define('PTS_CORE_VERSION', 9710);
pts_define('PTS_RELEASE_DATE', '20200603');
pts_define('PTS_CODENAME', 'Nesodden');

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

0 comments on commit 2b46ff2

Please sign in to comment.