From 966e75a4982803c936ee89aa82092d3ef299890a Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Fri, 22 May 2020 14:45:33 +0900 Subject: [PATCH 1/3] Fix typo --- tests/TextUI/failure-isolation.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TextUI/failure-isolation.phpt b/tests/TextUI/failure-isolation.phpt index 9cd9c8a22df..9b715a21b18 100644 --- a/tests/TextUI/failure-isolation.phpt +++ b/tests/TextUI/failure-isolation.phpt @@ -11,7 +11,7 @@ require __DIR__ . '/../bootstrap.php'; PHPUnit_TextUI_Command::main(); ?> --EXPECTF-- -QPHPUnit48 %s by Sebastian Bergmann and contributors. (modified by php5friends) +PHPUnit48 %s by Sebastian Bergmann and contributors. (modified by php5friends) FFFFFFFFFFFFF From 1cbd9bc81c191684bf1dd0654c81eeacaa3e3b3f Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Fri, 22 May 2020 14:45:52 +0900 Subject: [PATCH 2/3] Fix whitespace --- tests/TextUI/log-junit.phpt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TextUI/log-junit.phpt b/tests/TextUI/log-junit.phpt index 3c45b51b008..c60c887ae20 100644 --- a/tests/TextUI/log-junit.phpt +++ b/tests/TextUI/log-junit.phpt @@ -27,7 +27,7 @@ Failed asserting that false is true. StatusTest::testError -Exception: +Exception: %s/StatusTest.php:%d @@ -42,7 +42,7 @@ Time: %s, Memory: %s There was 1 error: 1) StatusTest::testError -Exception: +Exception: %s/StatusTest.php:%d From b44ef13c32d56752e7e928ff3ec0c642578ea4aa Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Fri, 22 May 2020 14:59:37 +0900 Subject: [PATCH 3/3] Use Xenial --- .travis.yml | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4d349482f4d..beb7cae5f85 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,10 @@ language: php +addons: + apt: + packages: + - libxml2-utils php: - - 5.3 - - 5.4 - - 5.5 - 5.6 - "7.0" - "7.1" @@ -13,6 +14,29 @@ env: - DEPENDENCIES="high" - DEPENDENCIES="low" +matrix: + fast_finish: true + include: + - php: 5.3 + dist: precise + env: DEPENDENCIES="high" + - php: 5.3 + dist: precise + env: DEPENDENCIES="low" + - php: 5.4 + dist: trusty + env: DEPENDENCIES="high" + - php: 5.4 + dist: trusty + env: DEPENDENCIES="low" + - php: 5.5 + dist: trusty + env: DEPENDENCIES="high" + - php: 5.5 + dist: trusty + env: DEPENDENCIES="low" + +dist: xenial sudo: false before_install: