1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
# Copyright 2016-2025 Free Software Foundation, Inc.
#
# Copying and distribution of this file, with or without modification,
# in any medium, are permitted without royalty provided the copyright
# notice and this notice are preserved.
. $srcdir/test-lib.sh
use_local_patch
use_tmpdir
# ==============================================================
printf "%s\n" 1 2 4 5 > a
cat > ab.diff <<EOF
*** a
--- b
***************
*** 1,4 ****
--- 1,5 ----
1
2
+ 3
4
5
EOF
check 'patch < ab.diff' <<EOF
patching file a
EOF
printf "%s\n" 1 2 3 4 5 > a
cat > ab.diff <<EOF
*** a
--- b
***************
*** 1,5 ****
1
2
- 3
4
5
--- 1,4 ----
EOF
check 'patch < ab.diff' <<EOF
patching file a
EOF
# --------------------------------------------------------------
printf "%s\n" a a a a a b a a a a a > a
cat > ab.diff <<EOF
*** a
--- b
***************
*** 6 ****
- b
--- 5 ----
EOF
check 'patch < ab.diff' <<EOF
patching file a
EOF
check 'echo `cat a`' <<EOF
a a a a a a a a a a
EOF
cat > ba.diff <<EOF
*** b
--- a
***************
*** 5 ****
--- 6 ----
+ b
EOF
check 'patch < ba.diff' <<EOF
patching file a
EOF
check 'echo `cat a`' <<EOF
a a a a a b a a a a a
EOF
printf "%s\n" a a a a a a a a a a b > a
cat > ab.diff <<EOF
*** a
--- b
***************
*** 11 ****
- b
--- 10 ----
EOF
check 'patch < ab.diff' <<EOF
patching file a
EOF
check 'echo `cat a`' <<EOF
a a a a a a a a a a
EOF
cat > ba.diff <<EOF
*** b
--- a
***************
*** 10 ****
--- 11 ----
+ b
EOF
check 'patch < ba.diff' <<EOF
patching file a
EOF
check 'echo `cat a`' <<EOF
a a a a a a a a a a b
EOF
|