File: nodel.sh

package info (click to toggle)
cssc 1.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 11,368 kB
  • sloc: cpp: 39,446; ansic: 17,403; sh: 11,328; python: 3,923; makefile: 1,929; perl: 342; awk: 15; sed: 15
file content (27 lines) | stat: -rwxr-xr-x 876 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#! /bin/sh

# default.sh:  Tests for prt no involving several deltas.

# Import common functions & definitions.
. ../common/test-common
. ../common/need-prt

s=s.testfile

remove $s
../../testutils/uu_decode --decode < testfile.uue || miscarry could not uudecode testfile.uue.

# XXX: the IGNORE in the followig lines is because of the warning message we
#      get about the excluded deltas feature not being fully tested.

do_output d1 "${vg_prt} -u $s" 0 expected/nodel.-u IGNORE
do_output d2 "${vg_prt} -f $s" 0 expected/nodel.-f IGNORE
do_output d3 "${vg_prt} -t $s" 0 expected/nodel.-t IGNORE
do_output d4 "${vg_prt} -b $s" 0 expected/nodel.-b IGNORE

do_output d5 "${vg_prt} -u -f $s" 0 expected/nodel.-u-f IGNORE
do_output d6 "${vg_prt} -t -b $s" 0 expected/nodel.-t-b IGNORE
do_output d7 "${vg_prt} -u -f -t -b $s" 0 expected/nodel.-u-f-t-b IGNORE

remove $s
success