export USE_ZEND_ALLOC=0
export USE_TRACKED_ALLOC=1
export ASAN_OPTIONS=exitcode=139
- php ./phpunit --exclude-group tty,benchmark,intl-data,transient
- if [ $? -gt 128 ]; then
- exit 1
- fi
+ export SYMFONY_DEPRECATIONS_HELPER=max[total]=999
+ X=0
+ for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
+ php ./phpunit $component --exclude-group tty,benchmark,intl-data,transient;
+ if [ $? -gt 128 ]; then
+ X=1;
+ fi
+ done
+ exit $X
displayName: 'Test Symfony'
condition: or(succeeded(), failed())
- script: |