Skip to content

fix tests in Zend #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 27 commits into from
Dec 22, 2013
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
5ea5070
Initial concept draft of new zend autoloader
ircmaxell Aug 29, 2013
b2f0734
More progress
ircmaxell Aug 30, 2013
d10dc03
More work, fixing memleaks and behavior
ircmaxell Aug 30, 2013
1155888
Merge branch 'use-function' of github.com:igorw/php-src into function…
ircmaxell Aug 30, 2013
191c149
Merge branch 'use-function' of github.com:igorw/php-src into function…
ircmaxell Aug 30, 2013
5e71fb5
Refactor out the lookup in is_callable
ircmaxell Aug 30, 2013
2efdc97
Remove lowercasing components
ircmaxell Aug 30, 2013
6aa5b03
Fix memory leak, and clean up a bit
ircmaxell Aug 30, 2013
e570462
Merge remote-tracking branch 'upstream/PHP-5.6' into function-autoloa…
igorw Dec 11, 2013
dd32908
Merge branch 'function-autoloading' of https://github.com/igorw/php-s…
krakjoe Dec 21, 2013
cdac9d7
fix build
krakjoe Dec 21, 2013
4daa114
Merge branch 'master' of https://github.com/php/php-src into function…
krakjoe Dec 21, 2013
8657f77
fix call to unload
krakjoe Dec 21, 2013
8a73ed4
fix build
krakjoe Dec 21, 2013
f16b075
fix patch, run tests
krakjoe Dec 21, 2013
dfa13d9
plug leaks
krakjoe Dec 21, 2013
c34abb5
fix most tests in Zend, three remain
krakjoe Dec 22, 2013
cfa2f6f
fix register autoload array callable
krakjoe Dec 22, 2013
3cf2f1f
fix error conditions test, prototype for function_exists
krakjoe Dec 22, 2013
2212f24
correct test
krakjoe Dec 22, 2013
e2d73a2
be compatible with phpdbg
krakjoe Dec 22, 2013
2b68179
fix zts build
krakjoe Dec 22, 2013
92fe949
all tests pass
krakjoe Dec 22, 2013
ed22ad9
remove debug printing, add author line
krakjoe Dec 22, 2013
530db35
Merge branch 'master' of https://git.php.net/push/php-src into functi…
krakjoe Dec 22, 2013
c1b56c0
...
krakjoe Dec 22, 2013
202921e
Merge branch 'master' of https://git.php.net/push/php-src into functi…
krakjoe Dec 22, 2013
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove debug printing, add author line
  • Loading branch information
krakjoe committed Dec 22, 2013
commit ed22ad919f4ab5948c85c8deebcdee185fccf348
2 changes: 1 addition & 1 deletion Zend/zend_autoload.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Anthony Ferrara <[email protected]> |
| Authors: Joe Watkins <[email protected]> |
+----------------------------------------------------------------------+
*/

Expand Down Expand Up @@ -93,7 +94,6 @@ int zend_autoload_call(const zval* name, long type TSRMLS_DC)
}

if (zend_hash_add(EG(autoload_stack), lc_name, lc_length+1, (void**)&dummy, sizeof(char), NULL) == FAILURE) {
printf("failed to add to autoload stack\n");
efree(lc_name);
return FAILURE;
}
Expand Down
1 change: 1 addition & 0 deletions Zend/zend_autoload.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Anthony Ferrara <[email protected]> |
| Authors: Joe Watkins <[email protected]> |
+----------------------------------------------------------------------+
*/

Expand Down