We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f2bf40 commit 9ccfe0bCopy full SHA for 9ccfe0b
System.php
@@ -315,7 +315,7 @@ public static function mkDir($args)
315
* 2) System::cat('sample.txt test.txt > final.txt');
316
* 3) System::cat('sample.txt test.txt >> final.txt');
317
*
318
- * Note: as the class use fopen, urls should work also (test that)
+ * Note: as the class use fopen, urls should work also
319
320
* @param string $args the arguments
321
* @return boolean true on success
tests/System/test_online.phpt
@@ -2,6 +2,10 @@
2
System commands tests
3
--SKIPIF--
4
<?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
+}
9
if (!getenv('PHP_PEAR_RUNTESTS')) {
10
echo 'skip ';
11
}
0 commit comments