mirror of
https://github.com/php/php-src.git
synced 2025-01-05 02:14:08 +08:00
Fixed false positive failure on gcov
This commit is contained in:
parent
39b0be5126
commit
a3a5b2197c
@ -26,7 +26,7 @@ $curl_content = curl_exec($ch);
|
||||
|
||||
fclose($handle);
|
||||
unset($handle);
|
||||
var_dump( file_get_contents($temp_file) );
|
||||
var_dump(preg_replace('/[\r\n]/', ' ', file_get_contents($temp_file)));
|
||||
@unlink($temp_file);
|
||||
|
||||
ob_start(); // start output buffering
|
||||
@ -38,7 +38,7 @@ ob_end_clean();
|
||||
|
||||
fclose($handle);
|
||||
unset($handle);
|
||||
var_dump( file_get_contents($temp_file) );
|
||||
var_dump(preg_replace('/[\r\n]/', ' ', file_get_contents($temp_file)));
|
||||
@unlink($temp_file);
|
||||
|
||||
curl_close($ch);
|
||||
|
Loading…
Reference in New Issue
Block a user