summaryrefslogtreecommitdiff
path: root/dev-perl/Unicode-LineBreak/files/Unicode-LineBreak-2017.004-dotinc.patch
blob: 3a9b808f4669bd22388b0fde742fd87c7d3440f5 (plain)
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
From fd36408d8e59381c0ea217166a244222adbd5ec9 Mon Sep 17 00:00:00 2001
From: Kent Fredric <kentnl@gentoo.org>
Date: Sun, 18 Mar 2018 22:02:48 +1300
Subject: Fix tests for '.' in @INC removal on Perl 5.26+

---
 t/01break.t    | 2 +-
 t/02hangul.t   | 2 +-
 t/03ns.t       | 2 +-
 t/04fold.t     | 2 +-
 t/05urgent.t   | 2 +-
 t/06context.t  | 2 +-
 t/07sea.t      | 2 +-
 t/08partial.t  | 2 +-
 t/09uri.t      | 2 +-
 t/11format.t   | 2 +-
 t/12fold2.t    | 2 +-
 t/13flowedsp.t | 2 +-
 t/14sea_al.t   | 2 +-
 t/15array.t    | 2 +-
 t/16regex.t    | 2 +-
 t/17prop.t     | 2 +-
 t/18currency.t | 2 +-
 17 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/t/01break.t b/t/01break.t
index a7676bc..4d80758 100644
--- a/t/01break.t
+++ b/t/01break.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require "t/lb.pl";
+require "./t/lb.pl";
 
 BEGIN { plan tests => 13 }
 
diff --git a/t/02hangul.t b/t/02hangul.t
index 5140636..027f418 100644
--- a/t/02hangul.t
+++ b/t/02hangul.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require "t/lb.pl";
+require "./t/lb.pl";
 
 BEGIN { plan tests => 2 }
 
diff --git a/t/03ns.t b/t/03ns.t
index 8d515dd..43b50f7 100644
--- a/t/03ns.t
+++ b/t/03ns.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require "t/lb.pl";
+require "./t/lb.pl";
 
 BEGIN { plan tests => 2 }
 
diff --git a/t/04fold.t b/t/04fold.t
index 8eb9624..50287cb 100644
--- a/t/04fold.t
+++ b/t/04fold.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require "t/lf.pl";
+require "./t/lf.pl";
 
 BEGIN { plan tests => 15 + 2 }
 
diff --git a/t/05urgent.t b/t/05urgent.t
index e5f27c7..0ae4c66 100644
--- a/t/05urgent.t
+++ b/t/05urgent.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require "t/lb.pl";
+require "./t/lb.pl";
 
 BEGIN { plan tests => 5 }
 
diff --git a/t/06context.t b/t/06context.t
index 4de9f4e..e8ac3f7 100644
--- a/t/06context.t
+++ b/t/06context.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require "t/lb.pl";
+require "./t/lb.pl";
 
 BEGIN { plan tests => 2 }
 
diff --git a/t/07sea.t b/t/07sea.t
index 8446e96..da4d49a 100644
--- a/t/07sea.t
+++ b/t/07sea.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require "t/lb.pl";
+require "./t/lb.pl";
 
 BEGIN {
     require Unicode::LineBreak;
diff --git a/t/08partial.t b/t/08partial.t
index e94f0a0..5baa894 100644
--- a/t/08partial.t
+++ b/t/08partial.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require "t/lb.pl";
+require "./t/lb.pl";
 
 BEGIN { plan tests => 15 }
 
diff --git a/t/09uri.t b/t/09uri.t
index 333e1cf..edb4d25 100644
--- a/t/09uri.t
+++ b/t/09uri.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require "t/lb.pl";
+require "./t/lb.pl";
 
 BEGIN { plan tests => 2 }
 
diff --git a/t/11format.t b/t/11format.t
index 62167cc..d4ebd5b 100644
--- a/t/11format.t
+++ b/t/11format.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require "t/lb.pl";
+require "./t/lb.pl";
 
 BEGIN { plan tests => 6 }
 
diff --git a/t/12fold2.t b/t/12fold2.t
index c9a64ef..d9fd4e8 100644
--- a/t/12fold2.t
+++ b/t/12fold2.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require "t/lf.pl";
+require "./t/lf.pl";
 
 BEGIN { plan tests => 2 }
 
diff --git a/t/13flowedsp.t b/t/13flowedsp.t
index 4454e6b..d4b96b8 100644
--- a/t/13flowedsp.t
+++ b/t/13flowedsp.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require "t/lf.pl";
+require "./t/lf.pl";
 
 BEGIN { plan tests => 1 }
 
diff --git a/t/14sea_al.t b/t/14sea_al.t
index 5a45574..2990333 100644
--- a/t/14sea_al.t
+++ b/t/14sea_al.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require "t/lb.pl";
+require "./t/lb.pl";
 
 BEGIN { plan tests => 1 }
 
diff --git a/t/15array.t b/t/15array.t
index 5ab75c2..51d79ab 100644
--- a/t/15array.t
+++ b/t/15array.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require "t/lb.pl";
+require "./t/lb.pl";
 
 BEGIN { plan tests => 19 }
 
diff --git a/t/16regex.t b/t/16regex.t
index 4a7f0db..e85e203 100644
--- a/t/16regex.t
+++ b/t/16regex.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require "t/lb.pl";
+require "./t/lb.pl";
 
 my $splitre;
 BEGIN {
diff --git a/t/17prop.t b/t/17prop.t
index 55b9944..7f5b68c 100644
--- a/t/17prop.t
+++ b/t/17prop.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require 't/lb.pl';
+require './t/lb.pl';
 
 BEGIN { plan tests => 12 }
 
diff --git a/t/18currency.t b/t/18currency.t
index e280ddd..4d6feef 100644
--- a/t/18currency.t
+++ b/t/18currency.t
@@ -1,6 +1,6 @@
 use strict;
 use Test::More;
-require 't/lb.pl';
+require './t/lb.pl';
 
 BEGIN { plan tests => 96 }
 
-- 
2.16.2