mirror of
https://github.com/git/git.git
synced 2024-11-01 23:07:55 +01:00
60687de5ba
These are tests which are missing a link in their &&-chain, but in a way that probably does not effect the outcome of the test. Most of these are of the form: some_cmd >actual test_cmp expect actual The main point of the test is to verify the output, and a failure in some_cmd would probably be noticed by bogus output. But it is good for the tests to also confirm that "some_cmd" does not die unexpectedly after producing its output. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
33 lines
503 B
Bash
Executable file
33 lines
503 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Copyright (c) 2012 Heiko Voigt
|
|
#
|
|
|
|
test_description='Test revision walking api'
|
|
|
|
. ./test-lib.sh
|
|
|
|
cat >run_twice_expected <<-EOF
|
|
1st
|
|
> add b
|
|
> add a
|
|
2nd
|
|
> add b
|
|
> add a
|
|
EOF
|
|
|
|
test_expect_success 'setup' '
|
|
echo a > a &&
|
|
git add a &&
|
|
git commit -m "add a" &&
|
|
echo b > b &&
|
|
git add b &&
|
|
git commit -m "add b"
|
|
'
|
|
|
|
test_expect_success 'revision walking can be done twice' '
|
|
test-revision-walking run-twice >run_twice_actual &&
|
|
test_cmp run_twice_expected run_twice_actual
|
|
'
|
|
|
|
test_done
|