]> git.sesse.net Git - xml-template/blobdiff - tests/test.sh
Update the PHP SWIG version to PHP 7, with various crash fixes, too.
[xml-template] / tests / test.sh
index 3b281158f06c1bd37d2266d8ccd5bf8d256d73c9..bf92fca9f74ed15c64322361eb3208cca3724024 100755 (executable)
@@ -4,7 +4,7 @@ if [ -z "$TESTS" ]; then
        TESTS="passthru simple clone include attribute attribute2 attribute3 attribute-empty namespace namespace2 structure"
 fi
 if [ -z "$LANGUAGES" ]; then
-       LANGUAGES="perl perl-sax php4 php5 python ruby"
+       LANGUAGES="perl perl-sax php4 php5 python python3 ruby c++11"
 fi
 
 for L in $LANGUAGES; do
@@ -24,12 +24,21 @@ for L in $LANGUAGES; do
                if [ "$L" = "php5" ]; then
                        php5-cgi -q ../php5/$T.php > $TEMPFILE
                fi
+               if [ "$L" = "php7-swig" ]; then
+                       ( cd ../c++11 && make -s && cd ../php7-swig && make -s && sudo cp XML_Template_SWIG.so /usr/lib/php/20151012 ) && php7-cgi -q ../php7-swig/$T.php > $TEMPFILE
+               fi
                if [ "$L" = "python" ]; then
-                       python ../python/$T.py > $TEMPFILE
+                       python2 ../python/$T.py > $TEMPFILE
+               fi
+               if [ "$L" = "python3" ]; then
+                       python3 ../python/$T.py > $TEMPFILE
                fi
                if [ "$L" = "ruby" ]; then
                        ruby -I../ruby ../ruby/$T.rb > $TEMPFILE
                fi
+               if [ "$L" = "c++11" ]; then
+                       ( cd ../c++11 && make -s $T ) && ../c++11/$T > $TEMPFILE
+               fi
 
                perl ./xml-diff.pl $TEMPFILE reference/$T.xml
                if [ $? = 0 ]; then