@@ -161,23 +161,28 @@ $t.test(‘huge stdin is not replied back fully’,
161
161
162
162
$ t . test(‘ “releases” query’ ,
163
163
‘ commit: releases say $*PERL’ ,
164
- /^ <{$t .our - nick }> ‘, ¦releases (’ \d + ‘ commits): «Perl 6 (6.c)»’ $ /);
164
+ /^ <{$t .our - nick }> ‘, ¦releases (’ \d + ‘ commits): «Perl 6 (6.c)»’ $ /,
165
+ : 20 timeout);
165
166
166
167
$ t . test(‘ “v6c” query’ ,
167
168
‘ commit: v6c say $*PERL’ ,
168
- /^ <{$t .our - nick }> ‘, ¦v6c (’ \d + ‘ commits): «Perl 6 (6.c)»’ $ /);
169
+ /^ <{$t .our - nick }> ‘, ¦v6c (’ \d + ‘ commits): «Perl 6 (6.c)»’ $ /,
170
+ : 20 timeout);
169
171
170
172
$ t . test(‘ “6.c” query’ ,
171
173
‘ commit: 6.c say $*PERL’ ,
172
- /^ <{$t .our - nick }> ‘, ¦6.c (’ \d + ‘ commits): «Perl 6 (6.c)»’ $ /);
174
+ /^ <{$t .our - nick }> ‘, ¦6.c (’ \d + ‘ commits): «Perl 6 (6.c)»’ $ /,
175
+ : 20 timeout);
173
176
174
177
$ t . test(‘ “6c” query’ ,
175
178
‘ commit: 6c say $*PERL’ ,
176
- /^ <{$t .our - nick }> ‘, ¦6c (’ \d + ‘ commits): «Perl 6 (6.c)»’ $ /);
179
+ /^ <{$t .our - nick }> ‘, ¦6c (’ \d + ‘ commits): «Perl 6 (6.c)»’ $ /,
180
+ : 20 timeout);
177
181
178
182
$ t . test(‘ “what:” query’ ,
179
183
‘ what: say $*PERL’ ,
180
- /^ <{$t .our - nick }> ‘, ¦6c (’ \d + ‘ commits): «Perl 6 (6.c)»’ $ /);
184
+ /^ <{$t .our - nick }> ‘, ¦6c (’ \d + ‘ commits): «Perl 6 (6.c)»’ $ /,
185
+ : 20 timeout);
181
186
182
187
$ t . test(‘ “what,” does not work’ ,
183
188
‘ what, say ‘what, is actually working…’’ );
@@ -188,12 +193,12 @@ $t.test(‘“6c,” does not work’,
188
193
$ t . test(‘ “all” query (same output everywhere)’ ,
189
194
‘ commit: all say 'hi'’ , # ASCII quotes because they are supported everywhere
190
195
/^ <{$t .our - nick }> ‘, ¦all (’ \d + ‘ commits): «hi»’ $ /,
191
- : 20 timeout );
196
+ : 30 timeout );
192
197
193
198
$ t . test(‘ “all” query (different output everywhere)’ ,
194
199
‘ commit: all say rand’ ,
195
200
“ { $ t . our-nick} , https://whatever.able/fakeupload” ,
196
- : 20 timeout );
201
+ : 30 timeout );
197
202
198
203
$ t . test(‘ multiple commits separated by comma’ ,
199
204
“ commit: 2016.02,2016.03,9ccd848,HEAD say ‘hello’” ,
@@ -283,7 +288,8 @@ $t.test(‘Both commits are wrong (did you mean … ?)’,
283
288
$ t . test(‘ Did you forget to specify a revision?’ ,
284
289
‘ commit: say ‘hello world’’ ,
285
290
“ { $ t . our-nick} , Seems like you forgot to specify a revision (will use “v6.c” instead of “say”)” ,
286
- /^ <{$t .our - nick }> ‘, ¦v6.c (’ \d + ‘ commits): «hello world»’ $ /);
291
+ /^ <{$t .our - nick }> ‘, ¦v6.c (’ \d + ‘ commits): «hello world»’ $ /,
292
+ : 20 timeout);
287
293
288
294
# Timeouts
289
295
0 commit comments