mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
d3621de789
Remove the tests that checked against a fixed result and replace them with more focused checks of desired properties of the created diffs. That way we get more detailed and meaningful diagnostics. Store test file contents in files in a subdirectory in order to avoid cluttering the test script with them. Use tagged commits to store the changes to test diff -W against instead of using changes to the worktree. Use the worktree instead to try and apply the generated patch in order to validate it. Document unwanted features: trailing empty lines, too much context for appended functions, insufficient context at the end with -U0. Helped-by: Junio C Hamano <gitster@pobox.com> Signed-off-by: Rene Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
15 lines
224 B
C
15 lines
224 B
C
|
|
int appended(void) // Begin of first part
|
|
{
|
|
int i;
|
|
char *s = "a string";
|
|
|
|
printf("%s\n", s);
|
|
|
|
for (i = 99;
|
|
i >= 0;
|
|
i--) {
|
|
printf("%d bottles of beer on the wall\n", i);
|
|
}
|
|
|
|
printf("End of first part\n");
|