Skip to content

Commit 9ccfe0b

Browse files
committed
skip test on travis due to frequency of timeout failures
1 parent 3f2bf40 commit 9ccfe0b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

System.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ public static function mkDir($args)
315315
* 2) System::cat('sample.txt test.txt > final.txt');
316316
* 3) System::cat('sample.txt test.txt >> final.txt');
317317
*
318-
* Note: as the class use fopen, urls should work also (test that)
318+
* Note: as the class use fopen, urls should work also
319319
*
320320
* @param string $args the arguments
321321
* @return boolean true on success

tests/System/test_online.phpt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
System commands tests
33
--SKIPIF--
44
<?php
5+
if (getenv('TRAVIS')) {
6+
// this test is a frequent false failure on Travis CI due to RunTests timing it out
7+
echo 'skip ';
8+
}
59
if (!getenv('PHP_PEAR_RUNTESTS')) {
610
echo 'skip ';
711
}

0 commit comments

Comments
 (0)