git/t/t0062-revision-walking.sh
Jeff King 60687de5ba t: fix moderate &&-chain breakage
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>
2015-03-20 10:20:13 -07:00

34 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