mirror of
https://github.com/php/php-src.git
synced 2026-04-25 17:08:14 +02:00
39131219e8
This is a mix of more automated and manual migration. It should remove all applicable extension_loaded() checks outside of skipif.inc files.
24 lines
616 B
PHP
24 lines
616 B
PHP
--TEST--
|
|
Bug #65458 (curl memory leak)
|
|
--EXTENSIONS--
|
|
curl
|
|
--FILE--
|
|
<?php
|
|
$ch = curl_init();
|
|
$init = memory_get_usage();
|
|
for ($i = 0; $i < 10000; $i++) {
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, [ "SOAPAction: getItems" ]);
|
|
}
|
|
|
|
$preclose = memory_get_usage();
|
|
curl_close($ch);
|
|
|
|
// This is a slightly tricky heuristic, but basically, we want to ensure
|
|
// $preclose - $init has a delta in the order of bytes, not megabytes. Given
|
|
// the number of iterations in the loop, if we're wasting memory here, we
|
|
// should have megs and megs of extra allocations.
|
|
var_dump(($preclose - $init) < 10000);
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|