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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
#! /bin/sh
# sid-select2.sh: Do we select the correct SIDs?
# This tests for a specific bug:-
# [ Bug #110537 ] Invalid SID got in branch where Rtrunk greater than Rbranch
# Import common functions & definitions.
. ../common/test-common
# Get a test file...
s=s.tst
p=p.tst
e=tst
remove $s $p $e
get_expect () {
label=$1 ; shift
sid_expected=$1 ; shift
docommand $label "${get} -g $*" 0 "$sid_expected\n" IGNORE
}
# Create the file and set up the test conditions.
docommand p1 "${admin} -n $s" 0 IGNORE IGNORE
docommand p2 "${get} -e $s" 0 IGNORE IGNORE
docommand p3 "${delta} -y'' $s" 0 IGNORE IGNORE
docommand p4 "${get} -e -r2 $s" 0 IGNORE IGNORE
docommand p5 "${delta} -y'' $s" 0 IGNORE IGNORE
docommand p6 "${get} -e -r1.2 $s" 0 IGNORE IGNORE
docommand p7 "${delta} -y'' $s" 0 IGNORE IGNORE
# Do various forms of get on the file and make sure we get the right SID.
get_expect Y1 1.1 -r1.1 $s
get_expect Y2 1.2 -r1.2 $s
get_expect Y3 2.1 -r2.1 $s
get_expect Y4 1.2.1.1 -r1.2.1.1 $s
# now check for bug...
docommand Z1 "${get} -e -r1.2.1.1 $s" 0 \
"1.2.1.1\nnew delta 1.2.1.2\n0 lines\n" IGNORE
docommand Z2 "${delta} -yNoComment $s" 0 IGNORE IGNORE
docommand Z3 "${admin} -fb $s" 0 IGNORE IGNORE
docommand Z4 "${get} -e -b -r1.2.1.2 $s" 0 \
"1.2.1.2\nnew delta 1.2.2.1\n0 lines\n" IGNORE
remove $s
remove $p
remove $e
success
#end test case....
|