bug69753-mb.phpt 569 B

1234567891011121314151617181920
  1. --TEST--
  2. Bug #69753 - libXMLError::file contains invalid URI
  3. --XFAIL--
  4. Awaiting upstream fix: https://bugzilla.gnome.org/show_bug.cgi?id=750365
  5. --EXTENSIONS--
  6. dom
  7. --SKIPIF--
  8. <?php
  9. if (substr(PHP_OS, 0, 3) != 'WIN') die("skip this test is for Windows platforms only");
  10. ?>
  11. --FILE--
  12. <?php
  13. libxml_use_internal_errors(true);
  14. $doc = new DomDocument();
  15. $doc->load(__DIR__ . DIRECTORY_SEPARATOR . 'bug69753私はガラスを食べられます.xml');
  16. $error = libxml_get_last_error();
  17. var_dump($error->file);
  18. ?>
  19. --EXPECTF--
  20. string(%d) "file:///%s/ext/libxml/tests/bug69753.xml"