aboutsummaryrefslogtreecommitdiff
path: root/php/tests/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'php/tests/test.sh')
-rwxr-xr-xphp/tests/test.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/php/tests/test.sh b/php/tests/test.sh
index 888e93eb..a6ca89b9 100755
--- a/php/tests/test.sh
+++ b/php/tests/test.sh
@@ -7,10 +7,11 @@
pushd ../ext/google/protobuf/
make clean
set -e
-phpize && ./configure --enable-debug CFLAGS='-g -O0' && make
+# Add following in configure for debug: --enable-debug CFLAGS='-g -O0'
+phpize && ./configure && make
popd
-tests=( array_test.php encode_decode_test.php generated_class_test.php map_field_test.php )
+tests=( array_test.php encode_decode_test.php generated_class_test.php map_field_test.php well_known_test.php )
for t in "${tests[@]}"
do