]> Cypherpunks.ru repositories - goredo.git/blob - t/goredo-whichdo-regression.t
Download link for 2.6.2 release
[goredo.git] / t / goredo-whichdo-regression.t
1 #!/bin/sh
2
3 testname=`basename "$0"`
4 test_description="Check that no regression occured as it happened in 2.2.0"
5 . $SHARNESS_TEST_SRCDIR/sharness.sh
6 export REDO_TOP_DIR="`pwd`" REDO_NO_PROGRESS=1
7
8 cat > our <<EOF
9 a/b/c.d.do
10 a/b/default.d.do
11 a/b/default.do
12 a/default.d.do
13 a/default.do
14 default.d.do
15 default.do
16 EOF
17 touch default.do
18 redo-whichdo a/b/c.d > their
19 test_expect_success expected "cmp --silent our their"
20
21 test_done