3 test_description
='Test strcmp_offset functionality'
5 TEST_PASSES_SANITIZE_LEAK
=true
8 while read s1 s2 expect
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