aboutsummaryrefslogtreecommitdiffhomepage
path: root/test.sh
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-03-14 23:01:18 +0900
committernsfisis <nsfisis@gmail.com>2024-03-14 23:30:48 +0900
commit77e4429b9bc8ef9d1d2791c6665c551895691645 (patch)
tree586c2876c2a5737d91dd24eab74a172b8b3c9692 /test.sh
parentb9a65ea3ac1f7258b75341bdacbd8ebea0ab64dd (diff)
downloadphp-waddiwasi-77e4429b9bc8ef9d1d2791c6665c551895691645.tar.gz
php-waddiwasi-77e4429b9bc8ef9d1d2791c6665c551895691645.tar.zst
php-waddiwasi-77e4429b9bc8ef9d1d2791c6665c551895691645.zip
perf: optimize memory allocation
Diffstat (limited to 'test.sh')
-rw-r--r--test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.sh b/test.sh
index a87065a..23552a8 100644
--- a/test.sh
+++ b/test.sh
@@ -1,4 +1,4 @@
-result=$(php -d zend.assertions=-1 -d memory_limit=256M -d opcache.enable_cli=on -d opcache.jit=on -d opcache.jit_buffer_size=1G examples/php-on-wasm/php-wasm.php 2>/dev/null)
+result=$(php -d zend.assertions=-1 -d memory_limit=512M -d opcache.enable_cli=on -d opcache.jit=on -d opcache.jit_buffer_size=1G examples/php-on-wasm/php-wasm.php 2>/dev/null)
if [[ "$result" == 'Hello, World!' ]]; then
echo "Test passed"
exit 0