mirror of
https://github.com/git/git.git
synced 2024-11-01 06:47:52 +01:00
46c8f2988d
Group the test cases into two functions, test_diff_(frobnitz|unique). This in preparation for the histogram diff algorithm, which would also re-use these test cases. Signed-off-by: Tay Ray Chuan <rctay89@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
12 lines
186 B
Bash
Executable file
12 lines
186 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test_description='patience diff algorithm'
|
|
|
|
. ./test-lib.sh
|
|
. "$TEST_DIRECTORY"/lib-diff-alternative.sh
|
|
|
|
test_diff_frobnitz "patience"
|
|
|
|
test_diff_unique "patience"
|
|
|
|
test_done
|