Skip to content

Commit

Permalink
Add test for bug #74923
Browse files Browse the repository at this point in the history
  • Loading branch information
weltling committed Jul 15, 2017
1 parent 0b5683e commit 6cd140f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions ext/standard/tests/file/windows_mb_path/bug74923.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
--TEST--
Bug #74923 Crash when crawling through network share
--SKIPIF--
<?php
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "util.inc";

skip_if_not_win();
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");

?>
--FILE--
<?php

/* No way to affect timeout here. On different systems this might take some
dozens of seconds to complete. */

$s = '\\\\hello.com' . str_repeat('\\', 260);

var_dump($s, @stat($s));

?>
===DONE===
--EXPECTF--
string(271) "%s"
bool(false)
===DONE===

0 comments on commit 6cd140f

Please sign in to comment.