@@ -10,57 +10,57 @@ TEST_PASSES_SANITIZE_LEAK=true
10
10
. " $TEST_DIRECTORY " /lib-diff-data.sh
11
11
12
12
test_expect_success ' creating initial files' '
13
- mkdir path0 &&
14
- COPYING_test_data >path0/COPYING &&
15
- git add path0/COPYING &&
16
- git commit -m add -a
13
+ mkdir path0 &&
14
+ COPYING_test_data >path0/COPYING &&
15
+ git add path0/COPYING &&
16
+ git commit -m add -a
17
17
'
18
18
19
19
test_expect_success ' creating second files' '
20
- mkdir path1 &&
21
- mkdir path1/path2 &&
22
- COPYING_test_data >path1/path2/COPYING &&
23
- COPYING_test_data >path1/COPYING &&
24
- COPYING_test_data >COPYING &&
25
- COPYING_test_data >path0/COPYING-TOO &&
26
- git add path1/path2/COPYING &&
27
- git add path1/COPYING &&
28
- git add COPYING &&
29
- git add path0/COPYING-TOO &&
30
- git commit -m change -a
20
+ mkdir path1 &&
21
+ mkdir path1/path2 &&
22
+ COPYING_test_data >path1/path2/COPYING &&
23
+ COPYING_test_data >path1/COPYING &&
24
+ COPYING_test_data >COPYING &&
25
+ COPYING_test_data >path0/COPYING-TOO &&
26
+ git add path1/path2/COPYING &&
27
+ git add path1/COPYING &&
28
+ git add COPYING &&
29
+ git add path0/COPYING-TOO &&
30
+ git commit -m change -a
31
31
'
32
32
33
33
test_expect_success ' resetting tree HEAD^' '
34
- git reset --hard HEAD^
34
+ git reset --hard HEAD^
35
35
'
36
36
37
37
test_expect_success ' checking initial files exist after rewind' '
38
- test -d path0 &&
39
- test -f path0/COPYING
38
+ test -d path0 &&
39
+ test -f path0/COPYING
40
40
'
41
41
42
42
test_expect_success ' checking lack of path1/path2/COPYING' '
43
- ! test -f path1/path2/COPYING
43
+ ! test -f path1/path2/COPYING
44
44
'
45
45
46
46
test_expect_success ' checking lack of path1/COPYING' '
47
- ! test -f path1/COPYING
47
+ ! test -f path1/COPYING
48
48
'
49
49
50
50
test_expect_success ' checking lack of COPYING' '
51
- ! test -f COPYING
51
+ ! test -f COPYING
52
52
'
53
53
54
54
test_expect_success ' checking checking lack of path1/COPYING-TOO' '
55
- ! test -f path0/COPYING-TOO
55
+ ! test -f path0/COPYING-TOO
56
56
'
57
57
58
58
test_expect_success ' checking lack of path1/path2' '
59
- ! test -d path1/path2
59
+ ! test -d path1/path2
60
60
'
61
61
62
62
test_expect_success ' checking lack of path1' '
63
- ! test -d path1
63
+ ! test -d path1
64
64
'
65
65
66
66
test_done
0 commit comments