commit ed2ff8b9f919f8d0e18e69b038e965924454da58 from: Omar Polo date: Sat Jul 02 19:30:36 2022 UTC augment test_patch_add_line Try to create a file with more than one line, it would have catched an issue with my wip diff for ignore whitespaces in got patch. While here rename the function to drop "simple". commit - acf749fc600a43d8e276321e8a63cd97484f30bb commit + ed2ff8b9f919f8d0e18e69b038e965924454da58 blob - 40309e5b82bddf39321e6da00a91b79dd7ec65b0 blob + 1dd93063dc31ca2b41015828ff3d9ee109d24fdf --- regress/cmdline/patch.sh +++ regress/cmdline/patch.sh @@ -16,8 +16,8 @@ . ./common.sh -test_patch_simple_add_file() { - local testroot=`test_init patch_simple_add_file` +test_patch_add_file() { + local testroot=`test_init patch_add_file` got checkout $testroot/repo $testroot/wt > /dev/null ret=$? @@ -29,8 +29,12 @@ test_patch_simple_add_file() { cat < $testroot/wt/patch --- /dev/null +++ eta -@@ -0,0 +1 @@ -+eta +@@ -0,0 +5,5 @@ ++1 ++2 ++3 ++4 ++5 EOF (cd $testroot/wt && got patch patch) > $testroot/stdout @@ -49,7 +53,7 @@ EOF return 1 fi - echo eta > $testroot/wt/eta.expected + jot 5 > $testroot/wt/eta.expected cmp -s $testroot/wt/eta.expected $testroot/wt/eta ret=$? if [ $ret -ne 0 ]; then @@ -1778,7 +1782,7 @@ EOF } test_parseargs "$@" -run_test test_patch_simple_add_file +run_test test_patch_add_file run_test test_patch_simple_rm_file run_test test_patch_simple_edit_file run_test test_patch_prepend_line