diff options
Diffstat (limited to 'ext/libxml/tests/003.phpt')
-rw-r--r-- | ext/libxml/tests/003.phpt | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/ext/libxml/tests/003.phpt b/ext/libxml/tests/003.phpt deleted file mode 100644 index dcf6c0bb65..0000000000 --- a/ext/libxml/tests/003.phpt +++ /dev/null @@ -1,28 +0,0 @@ ---TEST-- -libxml_use_internal_errors() memory leaks ---SKIPIF-- -<?php if (!extension_loaded('simplexml')) die('skip'); ?> ---FILE-- -<?php -var_dump(libxml_use_internal_errors(true)); - -$xmlstr = <<< XML -<?xml version='1.0' standalone='yes'?> - <movies> - <movie> - <titles>PHP: Behind the Parser</title> - </movie> - </movies> -XML; - -simplexml_load_string($xmlstr); - -// test memleaks here -var_dump(libxml_use_internal_errors(false)); - -echo "Done\n"; -?> ---EXPECTF-- -bool(false) -bool(true) -Done |