2006-12-20 02:25:32 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2007-07-03 05:52:14 +00:00
|
|
|
test_description='git rev-list --max-count and --skip test'
|
2006-12-20 02:25:32 +00:00
|
|
|
|
2021-10-30 22:24:14 +00:00
|
|
|
TEST_PASSES_SANITIZE_LEAK=true
|
2006-12-20 02:25:32 +00:00
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success 'setup' '
|
tests: fix broken &&-chains in compound statements
The top-level &&-chain checker built into t/test-lib.sh causes tests to
magically exit with code 117 if the &&-chain is broken. However, it has
the shortcoming that the magic does not work within `{...}` groups,
`(...)` subshells, `$(...)` substitutions, or within bodies of compound
statements, such as `if`, `for`, `while`, `case`, etc. `chainlint.sed`
partly fills in the gap by catching broken &&-chains in `(...)`
subshells, but bugs can still lurk behind broken &&-chains in the other
cases.
Fix broken &&-chains in compound statements in order to reduce the
number of possible lurking bugs.
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Reviewed-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2021-12-09 05:11:06 +00:00
|
|
|
for n in 1 2 3 4 5 ; do
|
|
|
|
echo $n > a &&
|
|
|
|
git add a &&
|
2021-12-09 05:11:15 +00:00
|
|
|
git commit -m "$n" || return 1
|
2006-12-20 02:25:32 +00:00
|
|
|
done
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'no options' '
|
2007-07-03 05:52:14 +00:00
|
|
|
test $(git rev-list HEAD | wc -l) = 5
|
2006-12-20 02:25:32 +00:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--max-count' '
|
2007-07-03 05:52:14 +00:00
|
|
|
test $(git rev-list HEAD --max-count=0 | wc -l) = 0 &&
|
|
|
|
test $(git rev-list HEAD --max-count=3 | wc -l) = 3 &&
|
|
|
|
test $(git rev-list HEAD --max-count=5 | wc -l) = 5 &&
|
|
|
|
test $(git rev-list HEAD --max-count=10 | wc -l) = 5
|
2006-12-20 02:25:32 +00:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--max-count all forms' '
|
2007-07-03 05:52:14 +00:00
|
|
|
test $(git rev-list HEAD --max-count=1 | wc -l) = 1 &&
|
|
|
|
test $(git rev-list HEAD -1 | wc -l) = 1 &&
|
|
|
|
test $(git rev-list HEAD -n1 | wc -l) = 1 &&
|
|
|
|
test $(git rev-list HEAD -n 1 | wc -l) = 1
|
2006-12-20 02:25:32 +00:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--skip' '
|
2007-07-03 05:52:14 +00:00
|
|
|
test $(git rev-list HEAD --skip=0 | wc -l) = 5 &&
|
|
|
|
test $(git rev-list HEAD --skip=3 | wc -l) = 2 &&
|
|
|
|
test $(git rev-list HEAD --skip=5 | wc -l) = 0 &&
|
|
|
|
test $(git rev-list HEAD --skip=10 | wc -l) = 0
|
2006-12-20 02:25:32 +00:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--skip --max-count' '
|
2007-07-03 05:52:14 +00:00
|
|
|
test $(git rev-list HEAD --skip=0 --max-count=0 | wc -l) = 0 &&
|
|
|
|
test $(git rev-list HEAD --skip=0 --max-count=10 | wc -l) = 5 &&
|
|
|
|
test $(git rev-list HEAD --skip=3 --max-count=0 | wc -l) = 0 &&
|
|
|
|
test $(git rev-list HEAD --skip=3 --max-count=1 | wc -l) = 1 &&
|
|
|
|
test $(git rev-list HEAD --skip=3 --max-count=2 | wc -l) = 2 &&
|
|
|
|
test $(git rev-list HEAD --skip=3 --max-count=10 | wc -l) = 2 &&
|
|
|
|
test $(git rev-list HEAD --skip=5 --max-count=10 | wc -l) = 0 &&
|
|
|
|
test $(git rev-list HEAD --skip=10 --max-count=10 | wc -l) = 0
|
2006-12-20 02:25:32 +00:00
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|