Skip test if SKIP_ONLINE_TESTS set

This commit is contained in:
Christopher Jones 2013-08-14 15:45:06 -07:00
parent 7f69f07fc1
commit 9d62807190

View File

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