File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ before_script:
19
19
- phpenv config-rm xdebug.ini
20
20
21
21
script :
22
- - cd php$(echo $TRAVIS_PHP_VERSION | cut -b 1)/
22
+ - cd extension/ php$(echo $TRAVIS_PHP_VERSION | cut -b 1)/
23
23
- phpize
24
- - configure
24
+ - ./ configure
25
25
- make
26
- - make test
27
-
28
- after_script :
29
- - ./.travis.scripts/show-errors.sh
26
+ - REPORT_EXIT_STATUS=1 make test
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)
84
84
// Switch the active frame to the current browsed one and rebuild the symbol table
85
85
// to get it right
86
86
EG (current_execute_data ) = exec_frame ;
87
- zend_rebuild_symbol_table ();
87
+ zend_rebuild_symbol_table (TSRMLS_C );
88
88
symbol_table = EG (active_symbol_table );
89
89
90
90
// 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)
99
99
}
100
100
}
101
101
EG (current_execute_data ) = init_exec_frame ;
102
- zend_rebuild_symbol_table ();
102
+ zend_rebuild_symbol_table (TSRMLS_C );
103
103
104
104
global_symbol_table = & EG (symbol_table );
105
105
You can’t perform that action at this time.
0 commit comments