[MDBF-467] test MariaDB using Wordpress's CI Created: 2022-09-07  Updated: 2022-09-26  Resolved: 2022-09-26

Status: Closed
Project: MariaDB Foundation Development
Component/s: Buildbot
Affects Version/s: None
Fix Version/s: N/A

Type: Task Priority: Major
Reporter: Daniel Black Assignee: Daniel Black
Resolution: Done Votes: 0
Labels: None
Remaining Estimate: 0d
Time Spent: 2d
Original Estimate: Not Specified


 Description   

Using https://github.com/WordPress/phpunit-test-runner.git create a CI test for wordpress against MariaDB.



 Comments   
Comment by Daniel Black [ 2022-09-07 ]

Currently have a few minor patches in phpunit-test-runner (curl/mariadb version detection to use library/select version()).

In repo - cp .env.default .env and set db config:

$ diff .env.default .env
29,32c29,32
< export WPT_DB_NAME=
< export WPT_DB_USER=
< export WPT_DB_PASSWORD=
< export WPT_DB_HOST=
---
> export WPT_DB_NAME=wptest
> export WPT_DB_USER=wptest
> export WPT_DB_PASSWORD=wptest
> export WPT_DB_HOST=mariadb

Dockerfile.php

FROM php:cli
 
# https://github.com/WordPress/phpunit-test-runner/blob/master/README.md#0-requirements
 
RUN apt-get update ; \
    apt-get install -y git wget rsync unzip npm grunt \
		libfreetype6-dev \
		libjpeg62-turbo-dev \
		libpng-dev \
	&& docker-php-ext-configure gd --with-freetype --with-jpeg \
	&& docker-php-ext-install -j$(nproc) gd mysqli
 
VOLUME /phpunit-test-runner
 
VOLUME /prep
 
COPY entrypoint.sh /
 
WORKDIR /phpunit-test-runner
 
ENTRYPOINT ["/entrypoint.sh"]
 
CMD ["test.php"]

#!/bin/bash
 
set -eo pipefail
shopt -s nullglob
 
source /phpunit-test-runner/.env
 
export WPT_PREPARE_DIR=/prep
export WPT_TEST_DIR=$WPT_PREPARE_DIR
export COMPOSER_ALLOW_SUPERUSER=1
 
exec php "$@"

$ buildah bud --tag wp_php -f Dockerfile.php .
 
 podman pod  create  wptest
 
 podman volume wptest_prep
 
$ source ../phpunit-test-runner/.env
 
$ podman run -d --pod wptest --name $WPT_DB_HOST --env MARIADB_USER=$WPT_DB_USER --env MARIADB_PASSWORD=$WPT_DB_PASSWORD --env MARIADB_DATABASE=$WPT_DB_NAME  --env MARIADB_RANDOM_ROOT_PASSWORD=1 --rm
 quay.io/mariadb-foundation/mariadb-devel:10.10
 
 
$ podman run --pod wptest -v ../phpunit-test-runner/:/phpunit-test-runner:z -v wptest_prep:/prep --rm   wp_php prepare.php
 
$ podman run --pod wptest -v ../phpunit-test-runner/:/phpunit-test-runner:z -v wptest_prep:/prep --rm   wp_php

Test results so far:

  • lots of warnings (due to php8.1 being tested and php deprecation of functions still being used).
  • 16 failures, most tz off by 3 hrs somewhere.

There were 16 failures:

1) Tests_Date_DateI18n::test_should_return_current_time_on_invalid_timestamp
The dates should be equal
Failed asserting that 1662535956 matches expected 1662546756.
 
/prep/tests/phpunit/tests/date/dateI18n.php:20
/prep/vendor/phpunit/phpunit/phpunit:98
 
2) Tests_Date_DateI18n::test_should_handle_zero_timestamp
Failed asserting that two strings are identical.
--- Expected
+++ Actual
@@ @@
-'1970-01-01T00:00:00+03:00'
+'1970-01-01T00:00:00+00:00'
 
/prep/tests/phpunit/tests/date/dateI18n.php:38
/prep/vendor/phpunit/phpunit/phpunit:98
 
3) Tests_Date_DateI18n::test_should_handle_dst with data set "Before DST start" ('2019-03-31 02:59:00', 'Europe/Kiev')
Failed asserting that two strings are identical.
--- Expected
+++ Actual
@@ @@
-'0 2019-03-31T02:59:00+02:00'
+'0 2019-03-31T02:59:00+00:00'
 
/prep/tests/phpunit/tests/date/dateI18n.php:191
/prep/vendor/phpunit/phpunit/phpunit:98
 
4) Tests_Date_DateI18n::test_should_handle_dst with data set "After DST start" ('2019-03-31 04:01:00', 'Europe/Kiev')
Failed asserting that two strings are identical.
--- Expected
+++ Actual
@@ @@
-'1 2019-03-31T04:01:00+03:00'
+'0 2019-03-31T04:01:00+00:00'
 
/prep/tests/phpunit/tests/date/dateI18n.php:191
/prep/vendor/phpunit/phpunit/phpunit:98
 
5) Tests_Date_DateI18n::test_should_handle_dst with data set "Before DST end" ('2019-10-27 02:59:00', 'Europe/Kiev')
Failed asserting that two strings are identical.
--- Expected
+++ Actual
@@ @@
-'1 2019-10-27T02:59:00+03:00'
+'0 2019-10-27T02:59:00+00:00'
 
/prep/tests/phpunit/tests/date/dateI18n.php:191
/prep/vendor/phpunit/phpunit/phpunit:98
 
6) Tests_Date_DateI18n::test_should_handle_dst with data set "After DST end" ('2019-10-27 04:01:00', 'Europe/Kiev')
Failed asserting that two strings are identical.
--- Expected
+++ Actual
@@ @@
-'0 2019-10-27T04:01:00+02:00'
+'0 2019-10-27T04:01:00+00:00'
 
/prep/tests/phpunit/tests/date/dateI18n.php:191
/prep/vendor/phpunit/phpunit/phpunit:98
 
7) Tests_Date_GetPostTime::test_should_return_wp_timestamp
Failed asserting that 1662546756 is identical to 1662535956.
 
/prep/tests/phpunit/tests/date/getPostTime.php:71
/prep/vendor/phpunit/phpunit/phpunit:98
 
8) Tests_Date_GetPostTime::test_should_return_time
Failed asserting that two strings are identical.
--- Expected
+++ Actual
@@ @@
-'2022-09-07T10:32:36+03:00'
+'2022-09-07T10:32:36+00:00'
 
/prep/tests/phpunit/tests/date/getPostTime.php:97
/prep/vendor/phpunit/phpunit/phpunit:98
 
9) Tests_Date_mysql2date::test_mysql2date_should_format_time
Failed asserting that two strings are identical.
--- Expected
+++ Actual
@@ @@
-'2022-09-07T10:32:36+03:00'
+'2022-09-07T10:32:36+00:00'
 
/prep/tests/phpunit/tests/date/mysql2date.php:42
/prep/vendor/phpunit/phpunit/phpunit:98
 
10) Tests_Date_mysql2date::test_mysql2date_should_format_time_with_changed_time_zone
Failed asserting that two strings are identical.
--- Expected
+++ Actual
@@ @@
-'2022-09-07T10:32:36+03:00'
+'2022-09-07T10:32:36+00:00'
 
/prep/tests/phpunit/tests/date/mysql2date.php:58
/prep/vendor/phpunit/phpunit/phpunit:98
 
11) Tests_Date_Query::test_build_mysql_datetime_with_custom_timezone with data set #0 ('2019-06-04T08:18:24+03:00', '2019-06-04 08:18:24')
Expected 2019-06-04 08:18:24, got 2019-06-04 05:18:24
Failed asserting that 1559625504 matches expected 1559636304.
 
/prep/tests/phpunit/tests/date/query.php:571
/prep/vendor/phpunit/phpunit/phpunit:98
 
12) Tests_Date_Query::test_build_mysql_datetime_with_custom_timezone with data set #1 ('2019-06-04T05:18:24+00:00', '2019-06-04 08:18:24')
Expected 2019-06-04 08:18:24, got 2019-06-04 05:18:24
Failed asserting that 1559625504 matches expected 1559636304.
 
/prep/tests/phpunit/tests/date/query.php:571
/prep/vendor/phpunit/phpunit/phpunit:98
 
13) Tests_Date_wpTimezone::test_should_return_timezone_string
Failed asserting that two strings are identical.
--- Expected
+++ Actual
@@ @@
-'Europe/Kiev'
+'+00:00'
 
/prep/tests/phpunit/tests/date/wpTimezone.php:36
/prep/vendor/phpunit/phpunit/phpunit:98
 
14) Tests_Date_XMLRPC::test_date_edit_post
UTC time into mw_editPost
Failed asserting that two strings are identical.
--- Expected
+++ Actual
@@ @@
-'2022-09-07 10:32:36'
+'2022-09-07 07:32:36'
 
/prep/tests/phpunit/tests/date/xmlrpc.php:206
/prep/vendor/phpunit/phpunit/phpunit:98
 
15) Tests_Date_XMLRPC::test_date_edit_comment
UTC time into wp_editComment
Failed asserting that two strings are identical.
--- Expected
+++ Actual
@@ @@
-'2022-09-07 09:32:36'
+'2022-09-07 06:32:36'
 
/prep/tests/phpunit/tests/date/xmlrpc.php:254
/prep/vendor/phpunit/phpunit/phpunit:98
 
16) WP_Test_REST_Posts_Controller::test_get_post_draft_edit_context
Failed asserting that '<ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36940">Protected: Hola</a><div class="wp-block-latest-posts__post-excerpt">Hello World!</div></li>\n
<li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36840">Post 28</a><div class="wp-block-latest-posts__post-excerpt">Post excerpt 0004747</div></li>\n
<li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36839">Post 27</a><div class="wp-block-latest-posts__post-excerpt">Post excerpt 0004746</div></li>\n
<li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36838">Post 26</a><div class="wp-block-latest-posts__post-excerpt">Post excerpt 0004745</div></li>\n
<li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36837">Post 25</a><div class="wp-block-latest-posts__post-excerpt">Post excerpt 0004744</div></li>\n
</ul> <ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36940">Protected: Hola</a><div class="wp-block-latest-posts__post-full-content">Hello World!</div></li>\n
<li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36840">Post 28</a><div class="wp-block-latest-posts__post-full-content">Post content 0004747</div></li>\n
<li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36839">Post 27</a><div class="wp-block-latest-posts__post-full-content">Post content 0004746</div></li>\n
<li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36838">Post 26</a><div class="wp-block-latest-posts__post-full-content">Post content 0004745</div></li>\n
<li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36837">Post 25</a><div class="wp-block-latest-posts__post-full-content">Post content 0004744</div></li>\n
</ul>' does not contain "Hello World!".
 
/prep/tests/phpunit/tests/rest-api/rest-posts-controller.php:1980
/prep/vendor/phpunit/phpunit/phpunit:98
 
ERRORS!
Tests: 14301, Assertions: 45485, Errors: 64, Failures: 16, Skipped: 70.
Could not open input file: phpunit.phar
Error: Failed to perform operation.

$ podman run --pod wptest -v ../phpunit-test-runner/:/phpunit-test-runner:z -v wptest_prep:/prep --rm   wp_php
Environment variables pass checks.
cd '/prep' && php ./vendor/phpunit/phpunit/phpunit --dont-report-useless-tests || php phpunit.phar --dont-report-useless-tests
 
 
Warning: Undefined array key "_" in /prep/wp-tests-config.php on line 84
PHP version: 8.1.10 (/prep)
 
Installing...
 
...
Warning:       Your XML configuration validates against a deprecated schema.
Suggestion:    Migrate your XML configuration using "--migrate-configuration"!
 
...........................................................    59 / 14301 (  0%)
...........................................................   118 / 14301 (  0%)
...........................................................   177 / 14301 (  1%)
 
....
........................................................... 13275 / 14301 ( 92%)
........................................................... 13334 / 14301 ( 93%)
........................................................... 13393 / 14301 ( 93%)
........................................................... 13452 / 14301 ( 94%)
........................................................... 13511 / 14301 ( 94%)
........................................................... 13570 / 14301 ( 94%)
........................................................... 13629 / 14301 ( 95%)
........................................................... 13688 / 14301 ( 95%)
........................................................... 13747 / 14301 ( 96%)
........................................................... 13806 / 14301 ( 96%)
........................................................... 13865 / 14301 ( 96%)
........................................................... 13924 / 14301 ( 97%)
........................................................... 13983 / 14301 ( 97%)
.................E..............EEEE.E..EE.EE.............. 14042 / 14301 ( 98%)
.................EE........................................ 14101 / 14301 ( 98%)
.........................................E................. 14160 / 14301 ( 99%)
...............................................EEEE.E.E..EE 14219 / 14301 ( 99%)
E.E.EE..EEEEEEEE........................................... 14278 / 14301 ( 99%)
 
 
Time: 01:53.296, Memory: 311.00 MB
...
14) Tests_Date_XMLRPC::test_date_edit_post
UTC time into mw_editPost
Failed asserting that two strings are identical.
--- Expected
+++ Actual
@@ @@
-'2022-09-07 10:32:36'
+'2022-09-07 07:32:36'
 
/prep/tests/phpunit/tests/date/xmlrpc.php:206
/prep/vendor/phpunit/phpunit/phpunit:98
 
15) Tests_Date_XMLRPC::test_date_edit_comment
UTC time into wp_editComment
Failed asserting that two strings are identical.
--- Expected
+++ Actual
@@ @@
-'2022-09-07 09:32:36'
+'2022-09-07 06:32:36'
 
/prep/tests/phpunit/tests/date/xmlrpc.php:254
/prep/vendor/phpunit/phpunit/phpunit:98
 
16) WP_Test_REST_Posts_Controller::test_get_post_draft_edit_context
Failed asserting that '<ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36940">Protected: Hola</a><div class="wp-block-latest-posts__post-excerpt">Hello World!</div></li>\n
<li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36840">Post 28</a><div class="wp-block-latest-posts__post-excerpt">Post excerpt 0004747</div></li>\n
<li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36839">Post 27</a><div class="wp-block-latest-posts__post-excerpt">Post excerpt 0004746</div></li>\n
<li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36838">Post 26</a><div class="wp-block-latest-posts__post-excerpt">Post excerpt 0004745</div></li>\n
<li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36837">Post 25</a><div class="wp-block-latest-posts__post-excerpt">Post excerpt 0004744</div></li>\n
</ul> <ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36940">Protected: Hola</a><div class="wp-block-latest-posts__post-full-content">Hello World!</div></li>\n
<li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36840">Post 28</a><div class="wp-block-latest-posts__post-full-content">Post content 0004747</div></li>\n
<li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36839">Post 27</a><div class="wp-block-latest-posts__post-full-content">Post content 0004746</div></li>\n
<li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36838">Post 26</a><div class="wp-block-latest-posts__post-full-content">Post content 0004745</div></li>\n
<li><a class="wp-block-latest-posts__post-title" href="http://example.org/?p=36837">Post 25</a><div class="wp-block-latest-posts__post-full-content">Post content 0004744</div></li>\n
</ul>' does not contain "Hello World!".
 
/prep/tests/phpunit/tests/rest-api/rest-posts-controller.php:1980
/prep/vendor/phpunit/phpunit/phpunit:98
 
ERRORS!
Tests: 14301, Assertions: 45485, Errors: 64, Failures: 16, Skipped: 70.
Could not open input file: phpunit.phar
Error: Failed to perform operation.

Comment by Daniel Black [ 2022-09-08 ]

tz problem - potentially https://github.com/WordPress/wordpress-develop/pull/3155 (though tested 8.0 base and did encounter problems).

7.4 - no errors or warnings

$  podman run --pod wptest -v ../phpunit-test-runner/:/phpunit-test-runner:z -v wptest_prep:/prep --rm   wp_php 
Environment variables pass checks.
cd '/prep' && php ./vendor/phpunit/phpunit/phpunit --dont-report-useless-tests || php phpunit.phar --dont-report-useless-tests
 
 
Notice: Undefined index: _ in /prep/wp-tests-config.php on line 84
PHP version: 7.4.30 (/prep)
 
Installing...
Running as single site... To run multisite, use -c tests/phpunit/multisite.xml
Not running ajax tests. To execute these, use --group ajax.
Not running ms-files tests. To execute these, use --group ms-files.
Not running external-http tests. To execute these, use --group external-http.
PHPUnit 9.5.24 #StandWithUkraine
 
Warning:       Your XML configuration validates against a deprecated schema.
Suggestion:    Migrate your XML configuration using "--migrate-configuration"!
 
...........................................................    59 / 14309 (  0%)
...........................................................   118 / 14309 (  0%)
...........................................................   177 / 14309 (  1%)
...........................................................   236 / 14309 (  1%)
...........................................................   295 / 14309 (  2%)
...........................................................   354 / 14309 (  2%)
...........................................................   413 / 14309 (  2%)
....................S......................................   472 / 14309 (  3%)
...........................................................   531 / 14309 (  3%)
...........................................................   590 / 14309 (  4%)
...........................................................   649 / 14309 (  4%)
...........................................................   708 / 14309 (  4%)
...........................................................   767 / 14309 (  5%)
...........................................................   826 / 14309 (  5%)
...........................................................   885 / 14309 (  6%)
...........................................................   944 / 14309 (  6%)
...........................................................  1003 / 14309 (  7%)
...........................................................  1062 / 14309 (  7%)
...........................................................  1121 / 14309 (  7%)
...........................................................  1180 / 14309 (  8%)
...........................................................  1239 / 14309 (  8%)
...........................................................  1298 / 14309 (  9%)
...........................................................  1357 / 14309 (  9%)
...........................................................  1416 / 14309 (  9%)
...........................................................  1475 / 14309 ( 10%)
...........................................................  1534 / 14309 ( 10%)
...........................................................  1593 / 14309 ( 11%)
...........................................................  1652 / 14309 ( 11%)
...........................................................  1711 / 14309 ( 11%)
...........................................................  1770 / 14309 ( 12%)
...........................................................  1829 / 14309 ( 12%)
...........................................................  1888 / 14309 ( 13%)
...........................................S...............  1947 / 14309 ( 13%)
...........................................................  2006 / 14309 ( 14%)
...........................................................  2065 / 14309 ( 14%)
...........................................................  2124 / 14309 ( 14%)
...........................................................  2183 / 14309 ( 15%)
...........................................................  2242 / 14309 ( 15%)
...........................................................  2301 / 14309 ( 16%)
...........................................................  2360 / 14309 ( 16%)
...........................................................  2419 / 14309 ( 16%)
...........................................................  2478 / 14309 ( 17%)
...........................................................  2537 / 14309 ( 17%)
...........................................S...............  2596 / 14309 ( 18%)
...........................................................  2655 / 14309 ( 18%)
...........................................................  2714 / 14309 ( 18%)
...........................................................  2773 / 14309 ( 19%)
...........................................................  2832 / 14309 ( 19%)
...........................................................  2891 / 14309 ( 20%)
...S.S.....................................................  2950 / 14309 ( 20%)
...........................................................  3009 / 14309 ( 21%)
....................................................S......  3068 / 14309 ( 21%)
...........................................................  3127 / 14309 ( 21%)
............S..............................................  3186 / 14309 ( 22%)
...........................................................  3245 / 14309 ( 22%)
...........................................................  3304 / 14309 ( 23%)
...........................................................  3363 / 14309 ( 23%)
...........................................................  3422 / 14309 ( 23%)
...........................................................  3481 / 14309 ( 24%)
...........................................................  3540 / 14309 ( 24%)
...........................................................  3599 / 14309 ( 25%)
...........................................................  3658 / 14309 ( 25%)
...........................................................  3717 / 14309 ( 25%)
...........................................................  3776 / 14309 ( 26%)
...........................................................  3835 / 14309 ( 26%)
...........................................................  3894 / 14309 ( 27%)
...........................................................  3953 / 14309 ( 27%)
..........................................S................  4012 / 14309 ( 28%)
...........................................................  4071 / 14309 ( 28%)
...........................................................  4130 / 14309 ( 28%)
...........................................................  4189 / 14309 ( 29%)
...........................................................  4248 / 14309 ( 29%)
...........................................................  4307 / 14309 ( 30%)
...........................................................  4366 / 14309 ( 30%)
...........................................................  4425 / 14309 ( 30%)
...........................................................  4484 / 14309 ( 31%)
...........................................................  4543 / 14309 ( 31%)
...........................................................  4602 / 14309 ( 32%)
...........................................................  4661 / 14309 ( 32%)
...........................................................  4720 / 14309 ( 32%)
...........................................................  4779 / 14309 ( 33%)
...........................................................  4838 / 14309 ( 33%)
...........................................................  4897 / 14309 ( 34%)
...........................................................  4956 / 14309 ( 34%)
...........................................................  5015 / 14309 ( 35%)
...........................................................  5074 / 14309 ( 35%)
...........................................................  5133 / 14309 ( 35%)
...........................................................  5192 / 14309 ( 36%)
...........................................................  5251 / 14309 ( 36%)
...........................................................  5310 / 14309 ( 37%)
...........................................................  5369 / 14309 ( 37%)
...........................................................  5428 / 14309 ( 37%)
...........................................................  5487 / 14309 ( 38%)
...........................................................  5546 / 14309 ( 38%)
...........................................................  5605 / 14309 ( 39%)
...........................................................  5664 / 14309 ( 39%)
...........................................................  5723 / 14309 ( 39%)
...........................................................  5782 / 14309 ( 40%)
...........................................................  5841 / 14309 ( 40%)
...........................................................  5900 / 14309 ( 41%)
............................................SSSSSSSSSSSSSSS  5959 / 14309 ( 41%)
S..........................................S..........SSSS.  6018 / 14309 ( 42%)
..............................................SSSSSSSSSSS..  6077 / 14309 ( 42%)
..S........SSSSSSSSSSSS....................................  6136 / 14309 ( 42%)
...........................................................  6195 / 14309 ( 43%)
...........................................................  6254 / 14309 ( 43%)
...........................................................  6313 / 14309 ( 44%)
...........................................................  6372 / 14309 ( 44%)
...........................................................  6431 / 14309 ( 44%)
...........................................................  6490 / 14309 ( 45%)
...........................................................  6549 / 14309 ( 45%)
...........................................................  6608 / 14309 ( 46%)
...........................................................  6667 / 14309 ( 46%)
..S........................................................  6726 / 14309 ( 47%)
...........................................................  6785 / 14309 ( 47%)
...........................................................  6844 / 14309 ( 47%)
...........................................................  6903 / 14309 ( 48%)
...........................................................  6962 / 14309 ( 48%)
...........................................................  7021 / 14309 ( 49%)
...........................................................  7080 / 14309 ( 49%)
...........................................................  7139 / 14309 ( 49%)
...........................................................  7198 / 14309 ( 50%)
...........................................................  7257 / 14309 ( 50%)
...........................................................  7316 / 14309 ( 51%)
.......................................................S...  7375 / 14309 ( 51%)
...........................................................  7434 / 14309 ( 51%)
...........................................................  7493 / 14309 ( 52%)
...........................................................  7552 / 14309 ( 52%)
...........................................................  7611 / 14309 ( 53%)
...........................................................  7670 / 14309 ( 53%)
.......................................................S...  7729 / 14309 ( 54%)
.............................................S.............  7788 / 14309 ( 54%)
...........................................................  7847 / 14309 ( 54%)
...........................................................  7906 / 14309 ( 55%)
...........................................................  7965 / 14309 ( 55%)
...........................................................  8024 / 14309 ( 56%)
...........................................................  8083 / 14309 ( 56%)
...........................................................  8142 / 14309 ( 56%)
...........................................................  8201 / 14309 ( 57%)
...........................................................  8260 / 14309 ( 57%)
...........................................................  8319 / 14309 ( 58%)
...........................................................  8378 / 14309 ( 58%)
.........................SSSSSSSSSS........................  8437 / 14309 ( 58%)
...........................................................  8496 / 14309 ( 59%)
...........................................................  8555 / 14309 ( 59%)
...........................................................  8614 / 14309 ( 60%)
...........................................................  8673 / 14309 ( 60%)
...........................................................  8732 / 14309 ( 61%)
...........................................................  8791 / 14309 ( 61%)
...........................................................  8850 / 14309 ( 61%)
...........................................................  8909 / 14309 ( 62%)
...........................................................  8968 / 14309 ( 62%)
...........................................................  9027 / 14309 ( 63%)
...........................................................  9086 / 14309 ( 63%)
...........................................................  9145 / 14309 ( 63%)
...........................................................  9204 / 14309 ( 64%)
...........................................................  9263 / 14309 ( 64%)
...........................................................  9322 / 14309 ( 65%)
...........................................................  9381 / 14309 ( 65%)
...........................................................  9440 / 14309 ( 65%)
...........................................................  9499 / 14309 ( 66%)
...........................................................  9558 / 14309 ( 66%)
...........................................................  9617 / 14309 ( 67%)
...........................................................  9676 / 14309 ( 67%)
...........................................................  9735 / 14309 ( 68%)
...........................................................  9794 / 14309 ( 68%)
...........................................................  9853 / 14309 ( 68%)
...........................................................  9912 / 14309 ( 69%)
...........................................................  9971 / 14309 ( 69%)
........................................................... 10030 / 14309 ( 70%)
........................................................... 10089 / 14309 ( 70%)
........................................................... 10148 / 14309 ( 70%)
........................................................... 10207 / 14309 ( 71%)
........................................................... 10266 / 14309 ( 71%)
........................................................... 10325 / 14309 ( 72%)
........................................................... 10384 / 14309 ( 72%)
........................................................... 10443 / 14309 ( 72%)
........................................................... 10502 / 14309 ( 73%)
........................................................... 10561 / 14309 ( 73%)
........................................................... 10620 / 14309 ( 74%)
........................................................... 10679 / 14309 ( 74%)
........................................................... 10738 / 14309 ( 75%)
........................................................... 10797 / 14309 ( 75%)
........................................................... 10856 / 14309 ( 75%)
........................................................... 10915 / 14309 ( 76%)
........................................................... 10974 / 14309 ( 76%)
........................................................... 11033 / 14309 ( 77%)
........................................................... 11092 / 14309 ( 77%)
........................................................... 11151 / 14309 ( 77%)
........................................................... 11210 / 14309 ( 78%)
........................................................... 11269 / 14309 ( 78%)
........................................................... 11328 / 14309 ( 79%)
........................................................... 11387 / 14309 ( 79%)
........................................................... 11446 / 14309 ( 79%)
........................................................... 11505 / 14309 ( 80%)
........................................................... 11564 / 14309 ( 80%)
........................................................... 11623 / 14309 ( 81%)
........................................................... 11682 / 14309 ( 81%)
........................................................... 11741 / 14309 ( 82%)
........................................................... 11800 / 14309 ( 82%)
........................SS..S.............................. 11859 / 14309 ( 82%)
........................................................... 11918 / 14309 ( 83%)
........................................................... 11977 / 14309 ( 83%)
........................................................... 12036 / 14309 ( 84%)
........................................................... 12095 / 14309 ( 84%)
........................................................... 12154 / 14309 ( 84%)
........................................................... 12213 / 14309 ( 85%)
........................................................... 12272 / 14309 ( 85%)
........................................................... 12331 / 14309 ( 86%)
........................................................... 12390 / 14309 ( 86%)
........................................................... 12449 / 14309 ( 87%)
........................................................... 12508 / 14309 ( 87%)
........................................................... 12567 / 14309 ( 87%)
........................................................... 12626 / 14309 ( 88%)
........................................................... 12685 / 14309 ( 88%)
........................................................... 12744 / 14309 ( 89%)
........................................................... 12803 / 14309 ( 89%)
........................................................... 12862 / 14309 ( 89%)
........................................................... 12921 / 14309 ( 90%)
........................................................... 12980 / 14309 ( 90%)
........................................................... 13039 / 14309 ( 91%)
........................................................... 13098 / 14309 ( 91%)
........................................................... 13157 / 14309 ( 91%)
........................................................... 13216 / 14309 ( 92%)
........................................................... 13275 / 14309 ( 92%)
........................................................... 13334 / 14309 ( 93%)
........................................................... 13393 / 14309 ( 93%)
........................................................... 13452 / 14309 ( 94%)
........................................................... 13511 / 14309 ( 94%)
........................................................... 13570 / 14309 ( 94%)
........................................................... 13629 / 14309 ( 95%)
........................................................... 13688 / 14309 ( 95%)
........................................................... 13747 / 14309 ( 96%)
........................................................... 13806 / 14309 ( 96%)
........................................................... 13865 / 14309 ( 96%)
........................................................... 13924 / 14309 ( 97%)
........................................................... 13983 / 14309 ( 97%)
........................................................... 14042 / 14309 ( 98%)
........................................................... 14101 / 14309 ( 98%)
........................................................... 14160 / 14309 ( 98%)
........................................................... 14219 / 14309 ( 99%)
........................................................... 14278 / 14309 ( 99%)
........
 
Time: 01:54.504, Memory: 313.00 MB
 
OK, but incomplete, skipped, or risky tests!
Tests: 14309, Assertions: 45914, Skipped: 70.

Comment by Daniel Black [ 2022-09-14 ]

https://github.com/MariaDB/buildbot/pull/54

Generated at Thu Feb 08 03:38:05 UTC 2024 using Jira 8.20.16#820016-sha1:9d11dbea5f4be3d4cc21f03a88dd11d8c8687422.