mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00

add test for Bug #64159 bump default buffer size for values(32->512): do not reallocate buffers in 99% cases
10 lines
141 B
Bash
Executable file
10 lines
141 B
Bash
Executable file
#!/bin/sh
|
|
|
|
Q="";
|
|
i=0;
|
|
while [ $i -lt 32 ]; do
|
|
Q="${Q}\3\2\4\11\22\13\14\15\16\17\20\21\22\23\24\25\26\27";
|
|
i=$((i+1));
|
|
done
|
|
|
|
printf "${Q}"
|