Skip to content

Commit

Permalink
t9814: fix misconversion from test $a -o $b to test $a || test $b
Browse files Browse the repository at this point in the history
Spotted-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Jul 25, 2014
1 parent 6a06623 commit e832f73
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions t/t9814-git-p4-rename.sh
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,10 @@ test_expect_success 'detect copies' '
level=$(git diff-tree -r -C --find-copies-harder HEAD | sed 1d | cut -f1 | cut -d" " -f5 | sed "s/C0*//") &&
test -n "$level" && test "$level" -gt 0 && test "$level" -lt 98 &&
src=$(git diff-tree -r -C --find-copies-harder HEAD | sed 1d | cut -f2) &&
test "$src" = file10 || test "$src" = file11 &&
case "$src" in
file10 | file11) : ;; # happy
*) false ;; # not
&&
git config git-p4.detectCopies $(($level + 2)) &&
git p4 submit &&
p4 filelog //depot/file12 &&
Expand All @@ -191,7 +194,10 @@ test_expect_success 'detect copies' '
level=$(git diff-tree -r -C --find-copies-harder HEAD | sed 1d | cut -f1 | cut -d" " -f5 | sed "s/C0*//") &&
test -n "$level" && test "$level" -gt 2 && test "$level" -lt 100 &&
src=$(git diff-tree -r -C --find-copies-harder HEAD | sed 1d | cut -f2) &&
test "$src" = file10 || test "$src" = file11 || test "$src" = file12 &&
case "$src" in
file10 | file11 | file12) : ;; # happy
*) false ;; # not
&&
git config git-p4.detectCopies $(($level - 2)) &&
git p4 submit &&
p4 filelog //depot/file13 &&
Expand Down

0 comments on commit e832f73

Please sign in to comment.