1#! /bin/sh 2 3# default.sh: Tests for prt no involving several deltas. 4 5# Import common functions & definitions. 6. ../../common/test-common 7. ../../common/need-prt 8 9s=s.testfile 10 11remove $s 12${SRCROOT}/tests/testutils/uu_decode --decode < testfile.uue || miscarry could not uudecode testfile.uue. 13 14# XXX: the IGNORE in the followig lines is because of the warning message we 15# get about the excluded deltas feature not being fully tested. 16 17do_output d1 "${vg_prt} -u $s" 0 expected/nodel.-u IGNORE 18do_output d2 "${vg_prt} -f $s" 0 expected/nodel.-f IGNORE 19do_output d3 "${vg_prt} -t $s" 0 expected/nodel.-t IGNORE 20do_output d4 "${vg_prt} -b $s" 0 expected/nodel.-b IGNORE 21 22do_output d5 "${vg_prt} -u -f $s" 0 expected/nodel.-u-f IGNORE 23do_output d6 "${vg_prt} -t -b $s" 0 expected/nodel.-t-b IGNORE 24do_output d7 "${vg_prt} -u -f -t -b $s" 0 expected/nodel.-u-f-t-b IGNORE 25 26remove $s 27success 28