diff options
author | Valery Piashchynski <[email protected]> | 2020-12-29 22:32:32 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-12-29 22:32:32 +0300 |
commit | 984953a9db1d94817bda2e3d9266583151b1b437 (patch) | |
tree | 70419ff5970540de61966eccfe861f12cc1e3589 /tests | |
parent | 6fe9da5c7c06cd18c79cef017289b8274079db4c (diff) |
Rename Utils folder in the Makefile. Update memleak.php (char instead of
space). Format test for windows.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/memleak.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/memleak.php b/tests/memleak.php index 9a5376f0..169fe4f5 100644 --- a/tests/memleak.php +++ b/tests/memleak.php @@ -10,6 +10,6 @@ require __DIR__ . "/vendor/autoload.php"; $rr = new RoadRunner(new StreamRelay(\STDIN, \STDOUT)); $mem = ''; while($rr->waitPayload()){ - $mem .= str_repeat(" ", 1024*1024); + $mem .= str_repeat("a", 1024*1024); $rr->send(""); } |