Commit:    84be455e22073a011af570c9bf9b79e42349b6a7
Author:    Anatoliy Belsky <a...@php.net>         Tue, 3 Apr 2012 13:23:06 +0200
Parents:   c7e9c646eee25711cab04ee2d17390373baa53e5
Branches:  master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=84be455e22073a011af570c9bf9b79e42349b6a7

Log:
Fix bug #61454 ext\standard\tests\general_functions\bug49847.phpt fails

Bugs:
https://bugs.php.net/61454
https://bugs.php.net/49847

Changed paths:
  M  ext/standard/tests/general_functions/bug49847.phpt


Diff:
diff --git a/ext/standard/tests/general_functions/bug49847.phpt 
b/ext/standard/tests/general_functions/bug49847.phpt
index 6312d03..112592d 100644
--- a/ext/standard/tests/general_functions/bug49847.phpt
+++ b/ext/standard/tests/general_functions/bug49847.phpt
@@ -9,7 +9,7 @@ if ($iswin) {
        $s = str_repeat(' ', 4097);
        $s .= '1';
        file_put_contents($f, $s);
-       exec('more ' . $f, $output);
+       exec('type ' . $f, $output);
 } else {
        exec("printf %4098d 1", $output);
 }


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to