git-multimail: update to release 1.2.0
[git.git] / t / t4211 / expect.multiple-overlapping
blobd930b6eec4c46930c0190912f33be5b32eb6ff36
1 commit 4659538844daa2849b1a9e7d6fadb96fcd26fc83
2 Author: Thomas Rast <trast@student.ethz.ch>
3 Date:   Thu Feb 28 10:48:43 2013 +0100
5     change back to complete line
7 diff --git a/a.c b/a.c
8 --- a/a.c
9 +++ b/a.c
10 @@ -4,19 +4,21 @@
11  long f(long x)
12  {
13         int s = 0;
14         while (x) {
15                 x >>= 1;
16                 s++;
17         }
18         return s;
19  }
21  /*
22   * This is only an example!
23   */
25  int main ()
26  {
27         printf("%ld\n", f(15));
28         return 0;
30 \ No newline at end of file
33 +/* incomplete lines are bad! */
35 commit 100b61a6f2f720f812620a9d10afb3a960ccb73c
36 Author: Thomas Rast <trast@student.ethz.ch>
37 Date:   Thu Feb 28 10:48:10 2013 +0100
39     change to an incomplete line at end
41 diff --git a/a.c b/a.c
42 --- a/a.c
43 +++ b/a.c
44 @@ -4,19 +4,19 @@
45  long f(long x)
46  {
47         int s = 0;
48         while (x) {
49                 x >>= 1;
50                 s++;
51         }
52         return s;
53  }
55  /*
56   * This is only an example!
57   */
59  int main ()
60  {
61         printf("%ld\n", f(15));
62         return 0;
65 \ No newline at end of file
67 commit 39b6eb2d5b706d3322184a169f666f25ed3fbd00
68 Author: Thomas Rast <trast@student.ethz.ch>
69 Date:   Thu Feb 28 10:45:41 2013 +0100
71     touch comment
73 diff --git a/a.c b/a.c
74 --- a/a.c
75 +++ b/a.c
76 @@ -3,19 +3,19 @@
77  long f(long x)
78  {
79         int s = 0;
80         while (x) {
81                 x >>= 1;
82                 s++;
83         }
84         return s;
85  }
87  /*
88 - * A comment.
89 + * This is only an example!
90   */
92  int main ()
93  {
94         printf("%ld\n", f(15));
95         return 0;
96  }
98 commit a6eb82647d5d67f893da442f8f9375fd89a3b1e2
99 Author: Thomas Rast <trast@student.ethz.ch>
100 Date:   Thu Feb 28 10:45:16 2013 +0100
102     touch both functions
104 diff --git a/a.c b/a.c
105 --- a/a.c
106 +++ b/a.c
107 @@ -3,19 +3,19 @@
108 -int f(int x)
109 +long f(long x)
111         int s = 0;
112         while (x) {
113                 x >>= 1;
114                 s++;
115         }
116         return s;
119  /*
120   * A comment.
121   */
123  int main ()
125 -       printf("%d\n", f(15));
126 +       printf("%ld\n", f(15));
127         return 0;
130 commit f04fb20f2c77850996cba739709acc6faecc58f7
131 Author: Thomas Rast <trast@student.ethz.ch>
132 Date:   Thu Feb 28 10:44:55 2013 +0100
134     change f()
136 diff --git a/a.c b/a.c
137 --- a/a.c
138 +++ b/a.c
139 @@ -3,18 +3,19 @@
140  int f(int x)
142         int s = 0;
143         while (x) {
144                 x >>= 1;
145                 s++;
146         }
147 +       return s;
150  /*
151   * A comment.
152   */
154  int main ()
156         printf("%d\n", f(15));
157         return 0;
160 commit de4c48ae814792c02a49c4c3c0c757ae69c55f6a
161 Author: Thomas Rast <trast@student.ethz.ch>
162 Date:   Thu Feb 28 10:44:48 2013 +0100
164     initial
166 diff --git a/a.c b/a.c
167 --- /dev/null
168 +++ b/a.c
169 @@ -0,0 +3,18 @@
170 +int f(int x)
172 +       int s = 0;
173 +       while (x) {
174 +               x >>= 1;
175 +               s++;
176 +       }
180 + * A comment.
181 + */
183 +int main ()
185 +       printf("%d\n", f(15));
186 +       return 0;