Fixed false positive failure on gcov

This commit is contained in:
Matteo Beccati 2011-08-31 22:12:53 +00:00
parent 39b0be5126
commit a3a5b2197c

View File

@ -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);