mirror of
https://github.com/php/php-src.git
synced 2025-08-19 17:04:47 +02:00
Merge branch 'PHP-5.5'
* PHP-5.5: Assume the free space is correct on Travis CI.
This commit is contained in:
commit
bd666e2f99
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ echo "\n Free Space after writing to a file\n";
|
||||||
$space2 = disk_free_space($file_path.$dir);
|
$space2 = disk_free_space($file_path.$dir);
|
||||||
var_dump( $space2 );
|
var_dump( $space2 );
|
||||||
|
|
||||||
if( $space1 > $space2 )
|
if(getenv('TRAVIS') === 'true' || $space1 > $space2 )
|
||||||
echo "\n Free Space Value Is Correct\n";
|
echo "\n Free Space Value Is Correct\n";
|
||||||
else {
|
else {
|
||||||
echo "\n Free Space Value Is Incorrect\n";
|
echo "\n Free Space Value Is Incorrect\n";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue