]> git.cameronkatri.com Git - mandoc.git/blobdiff - regress/regress.sh
Documented `In' in full.
[mandoc.git] / regress / regress.sh
index 970aaec047257dbd913d8fde3bf7dbd80ce0c0c7..24048b34f7135e25fbff28a2560b31ed92077592 100755 (executable)
@@ -17,13 +17,17 @@ rm -rf output
 echo "Starting regression tests..."
 pass=0
 failed=0
-for file in */*.1 */*/*.1; do
+for file in */*.in */*/*.in; do
        [ -f "$file" ] || continue
        check_skip_list "$file" && break
        printf "%s: " "$file"
-       mandoc "$file" > test.mandoc 2> /dev/null
+       ${MANDOC} "$file" > test.mandoc 2> /dev/null
        ${NROFF} ${OUTPUT} -mandoc "$file" > test.nroff 2> /dev/null
-       if cmp -s test.mandoc test.nroff; then
+       l=`wc -l < test.mandoc`
+       head -n `expr $l - 1` test.mandoc | tail -n `expr $l - 2` > test.mandoc_
+       l=`wc -l < test.nroff`
+       head -n `expr $l - 1` test.nroff| tail -n `expr $l - 2` > test.nroff_
+       if cmp -s test.mandoc_ test.nroff_; then
                rm -f test.mandoc test.nroff
                echo "passed"
                pass=`expr $pass + 1`
@@ -37,4 +41,5 @@ for file in */*.1 */*/*.1; do
                diff -u "${file2}".nroff "${file2}".mandoc > "${file2}".diff
        fi
 done
+rm -f test.mandoc_ test.nroff_
 echo "Total: $pass passed, $failed failed"