File tree Expand file tree Collapse file tree 3 files changed +6
-11
lines changed Expand file tree Collapse file tree 3 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ language: php
3
3
# lock distro so new future defaults will not break the build
4
4
dist : trusty
5
5
6
- matrix :
6
+ jobs :
7
7
include :
8
8
- php : 5.3
9
9
dist : precise
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
3
- <phpunit backupGlobals =" false"
4
- backupStaticAttributes =" false"
5
- colors =" true"
6
- convertErrorsToExceptions =" true"
7
- convertNoticesToExceptions =" true"
8
- convertWarningsToExceptions =" true"
9
- processIsolation =" false"
10
- stopOnFailure =" false"
11
- bootstrap =" vendor/autoload.php"
12
- >
3
+ <phpunit bootstrap =" vendor/autoload.php" colors =" true" >
13
4
<testsuites >
14
5
<testsuite name =" React Test Suite" >
15
6
<directory >./tests/</directory >
Original file line number Diff line number Diff line change @@ -325,6 +325,10 @@ public function testEndWithoutDataDoesNotCloseIfWritableResourceStreamIsFull()
325
325
*/
326
326
public function testEndWithDataClosesImmediatelyIfWritableResourceStreamFlushes ()
327
327
{
328
+ if (defined ('HHVM_VERSION ' )) {
329
+ $ this ->markTestSkipped ('Not supported on HHVM ' );
330
+ }
331
+
328
332
$ stream = fopen ('php://temp ' , 'r+ ' );
329
333
$ filterBuffer = '' ;
330
334
$ loop = $ this ->createLoopMock ();
You can’t perform that action at this time.
0 commit comments