Browse Source

Skip test if SKIP_ONLINE_TESTS set

PHP-5.4.22
Christopher Jones 13 years ago
parent
commit
9d62807190
  1. 1
      ext/standard/tests/file/file_get_contents_error001.phpt

1
ext/standard/tests/file/file_get_contents_error001.phpt

@ -10,6 +10,7 @@ display_errors=false
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test"); if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
if (!function_exists("file_get_contents")) if (!function_exists("file_get_contents"))
die ("skip file_get_contents function is not found"); die ("skip file_get_contents function is not found");
if (getenv("SKIP_ONLINE_TESTS")) die("skip online test");
?> ?>
--FILE-- --FILE--
<?php <?php

Loading…
Cancel
Save