diff options
author | Remi Collet <remi@php.net> | 2013-06-20 08:42:07 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2013-06-20 08:42:07 +0200 |
commit | 9be591bdb503740ef5d3261422a180e68b9eb3fc (patch) | |
tree | e8f0fa38587b99ee771760720b23251cd0170972 /ext | |
parent | 0e55d3a12a668c08378326e4aa4e8556b5a384b0 (diff) | |
download | php-git-9be591bdb503740ef5d3261422a180e68b9eb3fc.tar.gz |
skip test for bug #64936 when tokenizer not built
Diffstat (limited to 'ext')
-rw-r--r-- | ext/reflection/tests/bug64936.phpt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/reflection/tests/bug64936.phpt b/ext/reflection/tests/bug64936.phpt index 578dc7e4c0..363a17f509 100644 --- a/ext/reflection/tests/bug64936.phpt +++ b/ext/reflection/tests/bug64936.phpt @@ -3,6 +3,10 @@ ReflectionMethod::getDocComment() uses left over doc comment from previous scann --INI-- opcache.save_comments=1 opcache.load_comments=1 +--SKIPIF-- +<?php +if (!extension_loaded('reflection') || !extension_loaded('tokenizer')) print 'skip missing reflection of tokernizer extension'; +?> --FILE-- <?php |