X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FDEVEL%2Fpxp%2Fpxp%2Frtests%2Fcanonxml%2Frun_canonxml;fp=helm%2FDEVEL%2Fpxp%2Fpxp%2Frtests%2Fcanonxml%2Frun_canonxml;h=0000000000000000000000000000000000000000;hb=3ef089a4c58fbe429dd539af6215991ecbe11ee2;hp=2c40807dd7a2f6cb709e02100b8a10c507215689;hpb=1c7fb836e2af4f2f3d18afd0396701f2094265ff;p=helm.git diff --git a/helm/DEVEL/pxp/pxp/rtests/canonxml/run_canonxml b/helm/DEVEL/pxp/pxp/rtests/canonxml/run_canonxml deleted file mode 100755 index 2c40807dd..000000000 --- a/helm/DEVEL/pxp/pxp/rtests/canonxml/run_canonxml +++ /dev/null @@ -1,31 +0,0 @@ -#! /bin/bash - -check_dir () { - dir="$1" - shift - xmlfiles=`cd $dir && echo *.xml` - for file in $xmlfiles; do - echo -n "File $dir/$file: " - ./test_canonxml "$@" "$dir/$file" >out.xml - if cmp out.xml "$dir/out/$file"; then - echo "OK" - else - echo "NOT OK" - read - fi - done -} - -check_dir "data_valid/conditional" -check_dir "data_valid/att_normalization" -check_dir "data_valid/optional_decls" -check_dir "data_valid/comments" -comments -check_dir "data_valid/bugfixes" - -#check_dir "data_jclark_valid/sa-problems" -#check_dir "data_jclark_valid/ext-sa-problems" -check_dir "data_jclark_valid/sa" -check_dir "data_jclark_valid/not-sa" -check_dir "data_jclark_valid/ext-sa" - -