]> git.sesse.net Git - xml-template/blobdiff - tests/test.sh
Fix a potential bug in the C++0x cleaning.
[xml-template] / tests / test.sh
index 3b281158f06c1bd37d2266d8ccd5bf8d256d73c9..43ccadcb1b73ca627066bdb2ec27ba6fe61bda3b 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 ruby c++0x"
 fi
 
 for L in $LANGUAGES; do
@@ -30,6 +30,9 @@ for L in $LANGUAGES; do
                if [ "$L" = "ruby" ]; then
                        ruby -I../ruby ../ruby/$T.rb > $TEMPFILE
                fi
+               if [ "$L" = "c++0x" ]; then
+                       ( cd ../c++0x && make -s $T ) && ../c++0x/$T $TEMPFILE
+               fi
 
                perl ./xml-diff.pl $TEMPFILE reference/$T.xml
                if [ $? = 0 ]; then