Skip to content

Commit a4a5e34

Browse files
committed
Merge remote-tracking branch 'origin/str_size_and_int64_56_backport' into str_size_and_int64
* origin/str_size_and_int64_56_backport: (29 commits) Fixed issue #183 (TMP_VAR is not only used once) Fix broken Junit output with --disable-cgi Added folder mark Further test fixes for the fdb2709 breakage. Fix broken test caused by fdb2709. Fix run-tests.php with Valgrind >= 3.10.0. Add microseconds to the serialised form of DateTime objects. Improved test for bug #62479 fix typo in ODBC code Support for __debugInfo (Joe Watkins) Optimize ZEND_POW (Rouven Weßling) gcov: tentative fix for broken coverage data after fix for opcache coverage slightly hackish, but works. The idea is that we want to give priority to .gcda files in .libs dirs vs the files in the upper level dir gcov: tentative fix for broken coverage data after fix for opcache coverage slightly hackish, but works. The idea is that we want to give priority to .gcda files in .libs dirs vs the files in the upper level dir Prevent recursion in ZF2 Parameters class 5.5.14 now adding NEWS block for beta4 5.4.30 next enable email notifications update NEWS update NEWS ... Conflicts: ext/opcache/ZendAccelerator.h ext/spl/spl_array.c
2 parents 63f57b5 + 317e805 commit a4a5e34

File tree

74 files changed

+1381
-1144
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+1381
-1144
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ php:
55
- 5.4
66

77
notifications:
8-
email: false
8+
email:
9+
on_failure: change
910

1011
env:
1112
global:

Makefile.gcov

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ php_lcov.info: lcov-test
1414
@rm -rf lcov_data/
1515
@$(mkinstalldirs) lcov_data/
1616
@echo
17-
-@files=`find . -name \*.gcda -o -name \*.gcno -o -name \*.da -o -name \*.c -o -name \*.h | sed -e 's/^\.\///' | sed -e 's/\.gcda//g' -e 's/\.gcno//g' -e 's/\.da//g' | $(EGREP) $(LCOV_INCLUDE) | uniq` ;\
17+
-@files=`find . -name \*.gcda -o -name \*.gcno -o -name \*.da -o -name \*.c -o -name \*.h | sed -e 's/^\.\///' | sed -e 's/\.gcda//g' -e 's/\.gcno//g' -e 's/\.da//g' | $(EGREP) $(LCOV_INCLUDE) | sed -e 's/.libs/ZZZZ/g' | sort | sed -e 's/ZZZZ/.libs/g' | uniq` ;\
1818
for x in $$files; do \
1919
echo -n . ;\
2020
y=`echo $$x | sed -e 's!\.libs/!!'`; \

Zend/zend_operators.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -962,7 +962,7 @@ ZEND_API int mul_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* {{{ *
962962
}
963963
/* }}} */
964964

965-
ZEND_API int pow_function(zval *result, zval *op1, zval *op2 TSRMLS_DC)
965+
ZEND_API int pow_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* {{{ */
966966
{
967967
zval op1_copy, op2_copy;
968968
int converted = 0;
@@ -1044,6 +1044,7 @@ ZEND_API int pow_function(zval *result, zval *op1, zval *op2 TSRMLS_DC)
10441044
}
10451045
}
10461046
}
1047+
/* }}} */
10471048

10481049
ZEND_API int div_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* {{{ */
10491050
{

ext/curl/tests/curl_basic_006.phpt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,18 @@ TestFest 2009 - AFUP - Jean-Marc Fontaine <[email protected]>
2121

2222
$url = "{$host}/get.php?test=get";
2323
$ch = curl_init();
24-
24+
$alldata = '';
2525
ob_start(); // start output buffering
2626
curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
2727
curl_setopt($ch, CURLOPT_WRITEFUNCTION, function ($ch, $data) {
28-
echo 'Data: '.$data;
28+
$GLOBALS['alldata'] .= $data;
2929
return strlen ($data);
3030
});
31-
31+
3232
curl_exec($ch);
3333
curl_close($ch);
34+
ob_end_flush();
35+
echo "Data: $alldata";
3436
?>
3537
===DONE===
3638
--EXPECTF--

0 commit comments

Comments
 (0)