diff options
Diffstat (limited to '6f90bb196268a5fc5e7b9c2fbb344972af7fdc5b.patch')
-rw-r--r-- | 6f90bb196268a5fc5e7b9c2fbb344972af7fdc5b.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/6f90bb196268a5fc5e7b9c2fbb344972af7fdc5b.patch b/6f90bb196268a5fc5e7b9c2fbb344972af7fdc5b.patch new file mode 100644 index 0000000..8d579e7 --- /dev/null +++ b/6f90bb196268a5fc5e7b9c2fbb344972af7fdc5b.patch @@ -0,0 +1,35 @@ +From 6f90bb196268a5fc5e7b9c2fbb344972af7fdc5b Mon Sep 17 00:00:00 2001 +From: Derick Rethans <github@derickrethans.nl> +Date: Tue, 17 Oct 2017 21:12:43 +0100 +Subject: [PATCH] Mark the test for bug #886 as slow as it uses a lot of disk + space + +--- + tests/bug00886-php5.phpt | 1 + + tests/bug00886-php7.phpt | 1 + + 2 files changed, 2 insertions(+) + +diff --git a/tests/bug00886-php5.phpt b/tests/bug00886-php5.phpt +index 708c4e78..f173ec83 100644 +--- a/tests/bug00886-php5.phpt ++++ b/tests/bug00886-php5.phpt +@@ -2,6 +2,7 @@ + Test for bug #886: Use the same file system protocol for file located inside PHAR in both directions (< PHP 7.0) + --SKIPIF-- + <?php if (getenv("SKIP_DBGP_TESTS")) { exit("skip Excluding DBGp tests"); } ?> ++<?php if (getenv("SKIP_SLOW_TESTS")) { exit("skip Excluding slow tests"); } ?> + <?php if (!version_compare(phpversion(), "7.0", '<')) echo "skip < PHP 7.0 needed\n"; ?> + --INI-- + xdebug.auto_trace=0 +diff --git a/tests/bug00886-php7.phpt b/tests/bug00886-php7.phpt +index 9e2c84ae..96b9ae6b 100644 +--- a/tests/bug00886-php7.phpt ++++ b/tests/bug00886-php7.phpt +@@ -2,6 +2,7 @@ + Test for bug #886: Use the same file system protocol for file located inside PHAR in both directions (>= PHP 7.0) + --SKIPIF-- + <?php if (getenv("SKIP_DBGP_TESTS")) { exit("skip Excluding DBGp tests"); } ?> ++<?php if (getenv("SKIP_SLOW_TESTS")) { exit("skip Excluding slow tests"); } ?> + <?php if (!version_compare(phpversion(), "7.0", '>=')) echo "skip >= PHP 7.0 needed\n"; ?> + --INI-- + xdebug.auto_trace=0 |