File: rcs.at

package info (click to toggle)
rcs-blame 1.4%2B20240206-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,816 kB
  • sloc: ansic: 15,922; sh: 10,108; makefile: 399; yacc: 389; lex: 156
file content (29 lines) | stat: -rw-r--r-- 789 bytes parent folder | download | duplicates (6)
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
28
29
AT_BANNER([[RCS file parsing.]])

AT_SETUP([No revisions present])
AT_KEYWORDS([rcs])
AT_KEYWORDS([errors])
AT_CHECK([[blame $testdir/empty,v]], 1, , stderr)
MAC_CHECK_STDERR
AT_CLEANUP

AT_SETUP([Two-digit year before 2000])
AT_KEYWORDS([rcs])
cp $testdir/compat-1.1.expout expout
cp $testdir/compat.experr experr
AT_CHECK([[blame -r1.1 $testdir/compat,v]], 0, expout, experr)
AT_CLEANUP

AT_SETUP([Missing empty line after delta text])
AT_KEYWORDS([rcs])
cp $testdir/compat-1.2.expout expout
cp $testdir/compat.experr experr
AT_CHECK([[blame -r1.2 $testdir/compat,v]], 0, expout, experr)
AT_CLEANUP

AT_SETUP([Binary data])
AT_KEYWORDS([rcs])
cp $testdir/binary-1.2.expout expout
cp $testdir/binary.experr experr
AT_CHECK([[blame -r1.2 $testdir/binary,v]], 0, expout, experr)
AT_CLEANUP