File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ before_script:
1919 - phpenv config-rm xdebug.ini
2020
2121script :
22- - cd php$(echo $TRAVIS_PHP_VERSION | cut -b 1)/
22+ - cd extension/ php$(echo $TRAVIS_PHP_VERSION | cut -b 1)/
2323 - phpize
24- - configure
24+ - ./ configure
2525 - make
2626 - make test
27-
28- after_script :
29- - ./.travis.scripts/show-errors.sh
27+ - cd ../../analyzer
28+ - composer install
29+ - vendor/bin/phpspec run
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ PHP_FUNCTION(meminfo_info_dump)
8484 // Switch the active frame to the current browsed one and rebuild the symbol table
8585 // to get it right
8686 EG (current_execute_data ) = exec_frame ;
87- zend_rebuild_symbol_table ();
87+ zend_rebuild_symbol_table (TSRMLS_C );
8888 symbol_table = EG (active_symbol_table );
8989
9090 // Once we have the symbol table, switch to the prev frame to get the right frame name
@@ -99,7 +99,7 @@ PHP_FUNCTION(meminfo_info_dump)
9999 }
100100 }
101101 EG (current_execute_data ) = init_exec_frame ;
102- zend_rebuild_symbol_table ();
102+ zend_rebuild_symbol_table (TSRMLS_C );
103103
104104 global_symbol_table = & EG (symbol_table );
105105
You can’t perform that action at this time.
0 commit comments