commit - 308ce28964ee726cc950ac9ae973cb286075581f
commit + 947f374dd47a87c593fce2335e59e1ac6d456c41
blob - 40d362b35f6816f824c7f4f341e1ec65900ed41e
blob + f24be2ec6def2b1c4206a2f88553c21f47ae2eb9
--- regress/cmdline/diff.sh
+++ regress/cmdline/diff.sh
return 1
fi
- echo "'-c BASE' requires work tree" > "$testroot/stderr.expected"
+ echo "got: '-c :base' requires work tree" > "$testroot/stderr.expected"
got diff -r "$testroot/repo" -c:base -c:head 2> $testroot/stderr
- cmp -s $testroot/stdout.expected $testroot/stdout
+ cmp -s $testroot/stderr.expected $testroot/stderr
ret=$?
if [ $ret -ne 0 ]; then
- diff -u $testroot/stdout.expected $testroot/stdout
+ diff -u $testroot/stderr.expected $testroot/stderr
fi
test_done "$testroot" "$ret"
blob - e2f69ad6bfabb6d873c7f6e79c7277eb9552ff14
blob + 853ae57628cf6cdee057c1be172a74f5600d337e
--- regress/cmdline/log.sh
+++ regress/cmdline/log.sh
echo "new file" > $testroot/wt/new
(cd $testroot/wt && got add new >/dev/null)
(cd $testroot/wt && got commit -m 'log_diffstat add file' > /dev/null)
-
- (cd $testroot/wt && got log -d | grep -A2 '^ [MDmA]' | sed '/^--/d' > \
- $testroot/stdout)
cat <<EOF >$testroot/stdout.expected
A new | 1+ 0-
4 files changed, 4 insertions(+), 0 deletions(-)
EOF
- cmp -s $testroot/stdout.expected $testroot/stdout
- ret=$?
- if [ $ret -ne 0 ]; then
- diff -u $testroot/stdout.expected $testroot/stdout
- fi
- test_done "$testroot" "$ret"
+ # try different -dPp combinations
+ for flags in -d -dP -dp -dPp; do
+ (cd $testroot/wt && got log $flags | grep -A2 '^ [MDmA]' | \
+ sed '/^--/d' > $testroot/stdout)
+
+ cmp -s $testroot/stdout.expected $testroot/stdout
+ ret=$?
+ if [ $ret -ne 0 ]; then
+ diff -u $testroot/stdout.expected $testroot/stdout
+ test_done "$testroot" "$ret"
+ return 1
+ fi
+ done
+
+ test_done "$testroot" "0"
}
test_log_commit_keywords() {
>> $testroot/stdout.expected
done
- got log -r "$testroot/repo" -scmaster:- -l15 > $testroot/stdout
+ got log -r "$testroot/repo" -s -cmaster:- -l15 > $testroot/stdout
cmp -s $testroot/stdout.expected $testroot/stdout
ret=$?
return 1
fi
+ # request same set of commits now with log -x
+ got log -r "$testroot/repo" -s -cmaster:- -xmaster:-15 > \
+ $testroot/stdout
+
+ cmp -s $testroot/stdout.expected $testroot/stdout
+ ret=$?
+ if [ $ret -ne 0 ]; then
+ diff -u $testroot/stdout.expected $testroot/stdout
+ test_done "$testroot" "$ret"
+ return 1
+ fi
+
(cd $testroot/wt && got update -c:head:-8 > /dev/null)
ret=$?
if [ $ret -ne 0 ]; then
printf '%s %.7s adding the test tree\n' "$d" $(pop_idx 1 $@) >> \
$testroot/stdout.expected
- (cd $testroot/wt && got log -sc:base > $testroot/stdout)
+ (cd $testroot/wt && got log -s -c:base > $testroot/stdout)
cmp -s $testroot/stdout.expected $testroot/stdout
ret=$?
return 1
fi
+ # from head to the base commit using -x
+ printf '%s %-7s commit number 16\n' "$d" "master" > \
+ $testroot/stdout.expected
+ for i in $(seq 16 9); do
+ printf '%s %.7s commit number %s\n' \
+ "$d" $(pop_idx $i $@) $(( i-1 )) \
+ >> $testroot/stdout.expected
+ done
+
+ (cd $testroot/wt && got log -s -c:head -x:base > $testroot/stdout)
+
+ cmp -s $testroot/stdout.expected $testroot/stdout
+ ret=$?
+ if [ $ret -ne 0 ]; then
+ diff -u $testroot/stdout.expected $testroot/stdout
+ test_done "$testroot" "$ret"
+ return 1
+ fi
+
# if + modifier is too great, use HEAD commit
printf '%s %-7s commit number %s\n' "$d" master 16 > \
$testroot/stdout.expected
printf '%s %.7s commit number %s\n' "$d" $(pop_idx 16 $@) 15 >> \
$testroot/stdout.expected
- (cd $testroot/wt && got log -sc:base:+20 -l2 > $testroot/stdout)
+ (cd $testroot/wt && got log -s -c:base:+20 -l2 > $testroot/stdout)
cmp -s $testroot/stdout.expected $testroot/stdout
ret=$?
printf '%s %.7s adding the test tree\n' "$d" $(pop_idx 1 $@) > \
$testroot/stdout.expected
- (cd $testroot/wt && got log -sc:base:-10 > $testroot/stdout)
+ (cd $testroot/wt && got log -s -c:base:-10 > $testroot/stdout)
cmp -s $testroot/stdout.expected $testroot/stdout
ret=$?
if [ $ret -ne 0 ]; then
printf '%s %.7s commit number 1\n' "$d" $(pop_idx 2 $@) > \
$testroot/stdout.expected
- (cd $testroot/wt && got log -scbase+:+ -l1 > $testroot/stdout)
+ (cd $testroot/wt && got log -s -cbase+:+ -l1 > $testroot/stdout)
cmp -s $testroot/stdout.expected $testroot/stdout
ret=$?
printf '%s %.7s commit number 1\n' "$d" $(pop_idx 2 $@) > \
$testroot/stdout.expected
- (cd $testroot/wt && got log -schead-1:- -l1 > $testroot/stdout)
+ (cd $testroot/wt && got log -s -chead-1:- -l1 > $testroot/stdout)
cmp -s $testroot/stdout.expected $testroot/stdout
ret=$?
printf '%s %.7s commit number 12\n' "$d" $(pop_idx 13 $@) > \
$testroot/stdout.expected
- (cd $testroot/wt && got log -scbase-1+2:-3 -l1 > $testroot/stdout)
+ (cd $testroot/wt && got log -s -cbase-1+2:-3 -l1 > $testroot/stdout)
cmp -s $testroot/stdout.expected $testroot/stdout
ret=$?
(cd $testroot/wt && got log -c::base:+ 2> $testroot/stderr)
- cmp -s $testroot/stdout.expected $testroot/stdout
+ cmp -s $testroot/stderr.expected $testroot/stderr
ret=$?
if [ $ret -ne 0 ]; then
- diff -u $testroot/stdout.expected $testroot/stdout
+ diff -u $testroot/stderr.expected $testroot/stderr
test_done "$testroot" "$ret"
return 1
fi
(cd $testroot/wt && got log -c:head:-: 2> $testroot/stderr)
- cmp -s $testroot/stdout.expected $testroot/stdout
+ cmp -s $testroot/stderr.expected $testroot/stderr
ret=$?
if [ $ret -ne 0 ]; then
- diff -u $testroot/stdout.expected $testroot/stdout
+ diff -u $testroot/stderr.expected $testroot/stderr
test_done "$testroot" "$ret"
return 1
fi
(cd $testroot/wt && got log -cmaster::+ 2> $testroot/stderr)
- cmp -s $testroot/stdout.expected $testroot/stdout
+ cmp -s $testroot/stderr.expected $testroot/stderr
ret=$?
if [ $ret -ne 0 ]; then
- diff -u $testroot/stdout.expected $testroot/stdout
+ diff -u $testroot/stderr.expected $testroot/stderr
test_done "$testroot" "$ret"
return 1
fi
(cd $testroot/wt && got log -cmaster:1+ 2> $testroot/stderr)
- cmp -s $testroot/stdout.expected $testroot/stdout
+ cmp -s $testroot/stderr.expected $testroot/stderr
ret=$?
if [ $ret -ne 0 ]; then
- diff -u $testroot/stdout.expected $testroot/stdout
+ diff -u $testroot/stderr.expected $testroot/stderr
test_done "$testroot" "$ret"
return 1
fi
(cd $testroot/wt && got log -c:base:-1:base:-1 2> $testroot/stderr)
- cmp -s $testroot/stdout.expected $testroot/stdout
+ cmp -s $testroot/stderr.expected $testroot/stderr
ret=$?
if [ $ret -ne 0 ]; then
- diff -u $testroot/stdout.expected $testroot/stdout
+ diff -u $testroot/stderr.expected $testroot/stderr
test_done "$testroot" "$ret"
return 1
fi
(cd $testroot/wt && got log -cmain:-main:- 2> $testroot/stderr)
- cmp -s $testroot/stdout.expected $testroot/stdout
+ cmp -s $testroot/stderr.expected $testroot/stderr
ret=$?
if [ $ret -ne 0 ]; then
- diff -u $testroot/stdout.expected $testroot/stdout
+ diff -u $testroot/stderr.expected $testroot/stderr
test_done "$testroot" "$ret"
return 1
fi
(cd $testroot/wt && got log -c:base:*1 2> $testroot/stderr)
- cmp -s $testroot/stdout.expected $testroot/stdout
+ cmp -s $testroot/stderr.expected $testroot/stderr
ret=$?
if [ $ret -ne 0 ]; then
- diff -u $testroot/stdout.expected $testroot/stdout
+ diff -u $testroot/stderr.expected $testroot/stderr
test_done "$testroot" "$ret"
return 1
fi