]> git.ipfire.org Git - thirdparty/git.git/blob - t/t0065-strcmp-offset.sh
The third batch
[thirdparty/git.git] / t / t0065-strcmp-offset.sh
1 #!/bin/sh
2
3 test_description='Test strcmp_offset functionality'
4
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
7
8 while read s1 s2 expect
9 do
10 test_expect_success "strcmp_offset($s1, $s2)" '
11 echo "$expect" >expect &&
12 test-tool strcmp-offset "$s1" "$s2" >actual &&
13 test_cmp expect actual
14 '
15 done <<-EOF
16 abc abc 0 3
17 abc def -1 0
18 abc abz -1 2
19 abc abcdef -1 3
20 EOF
21
22 test_done