-
Notifications
You must be signed in to change notification settings - Fork 1
/
01.DISABLED.yml
1583 lines (1583 loc) · 93.6 KB
/
01.DISABLED.yml
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
comment: "namespace clash"
match:
distribution: |
^(?x:
.*/CPAN-Index-\d # https://rt.cpan.org/Ticket/Display.html?id=43349
|WWOLF/Test-\d # shadows the official Test.pm
|INA/Modern/Open/Modern-Open-\d # shadows warnings.pm until including 0.05, see https://rt.cpan.org/Ticket/Display.html?id=97866; since 0.06 it's 5.005 only
)|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
disabled: 1
---
comment: "not a threaded perl"
match:
distribution: |
^(?x:
.*/Thread-Apartment-\d
|.*/Thread-Barrier-\d
|.*/Thread-Bless-\d
|.*/Thread-Conveyor-\d
|.*/Thread-CriticalSection-\d
|.*/Thread-Detach-\d
|.*/Thread-Isolate-\d
|.*/Thread-Queue-Duplex-\d
|.*/Thread-RWLock-\d
|XXXXX.*/Thread-Serialize-\d # theoretically works also with unthreaded perl (through forks.pm)
)|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
perlconfig:
archname: "(i386-freebsd$|i386-freebsd-64int$|amd64-freebsd$)"
disabled: 1
---
comment: "Distributions which are known to not work with 5.005"
match:
perlconfig:
version: "5.00505"
distribution: |
^(?x:
INGY/YAML-0\.66\.
|GAAS/libwww-perl-5\.808\.
|.*/CatalystX?-
|.*/Jifty-
|.*/MojoMojo-
|RJBS/Email-Address-1\.888\.tar\.gz # slow endless loop, it seems
|.*/CGI-Application-4\.06\.tar\.gz # interactive CGI queries
|.*/RCAPUTO/POE-0\.9999\.tar\.gz # hangs
|.*/Email-Address-1\.889\.tar\.gz # hanging tests
|.*/IPC-Locker-1\.48[12]\. # mysteriously dies and kills CPAN.pm
)|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
disabled: 1
---
comment: "Distributions which are known to not work with 5.6.x"
match:
perlconfig:
version: '^5\.6\.\d'
distribution: |
^(?x:
.*/CatalystX?-
|.*/Jifty-
|.*/MojoMojo-
|.*/Net-Daemon-0\.43\. # test hangs with 5.6.2 on i386-freebsd
|.*/Net-UCP-\d # ExtUtils::AutoInstall is causing problems?
)|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
disabled: 1
---
comment: "Distributions which are known to not work with 5.8.x"
match:
perlconfig:
version: '^5\.8\.\d'
distribution: |
^(?x:
.*/Dist-Zilla-PluginBundle-RSRCHBOY-\d # correctly discarded, but takes a lot of time to fail...
|.*/Dist-Zilla-PluginBundle-Author-MAXHQ-\d # correctly discarded, but takes a lot of time to fail...
|.*/Dist-Zilla-PluginBundle-Author-Plicease-\d # correctly discarded, but takes a lot of time to fail...
)|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
disabled: 1
---
comment: "Distributions which are known to not work"
match:
distribution: |
^(?x:
.*/Bio-Roary-\d # author uses travis-ci and does not need cpan testers, see https://rt.cpan.org/Ticket/Display.html?id=104843
)|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
disabled: 1
---
comment: "Never install perl from CPAN.pm"
match:
distribution: '/perl-5\.(6|7|8|9|\d\d)\.\d+'
# env:
# PERL_BATCH: yes
disabled: 1
---
comment: "... or parrot ..."
match:
distribution: '/parrot-\d+\.\d+'
disabled: 1
---
comment: "Do not need to test the guerilla"
match:
distribution: '/kurila-\d+'
disabled: 1
---
comment: "Perl6 distributions"
match:
distribution: '/Perl6/'
disabled: 1
---
comment: "Archaic OSes, probably will never work with them"
match:
distribution: "/(OS390|OS2|SGI|VMS|vms|AIX|Software-Packager-Aix|HPUX|MPE)-"
perlconfig:
archname: "(-freebsd|darwin|MSWin32|cygwin|-linux)"
disabled: 1
---
match:
distribution: '.*/Win32-ShellQuote-\d'
# allow this one everywhere; it build on non-win32 and is a prereq for Menlo
---
comment: "An obsolete OS..."
match:
distribution: |
^(?x:
.*/NPRG-
|.*/MSN-PersonalMessage-
|.*/DBD-ADO-
|.*/MSDOS-
|.*/libwin32-
|.*/Cache-FastMmap-WithWin32-
|.*/Win32(API)?-
|.*/win-
|.*/SystemTray-Applet-Win32-
|.*/XML-API-WIX2-\d # needs Windows Installer XML verion 2
|.*/Device-Velleman-K8055-\d # "can currently only be installed on Microsoft Windows Platforms"
|.*/SkypeAPI-0\.0[0-7]\. # currently windows only
)|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
perlconfig:
archname: "(-freebsd|-linux|darwin)"
disabled: 1
---
comment: "this is probably linux-specific"
match:
distribution: |
^(?x:
.*/Audio-RaveMP-
|.*/Curses-UI-Mousehandler-GPM-
|.*/DPKG-Tools-
|.*/Device-Blkid-E2fsprogs-
|.*/Device-LabJack-
|.*/IPTables-
|.*/IO-Epoll-
|.*/LSF-Batch-
|.*/Linux-Distribution-
|.*/Linux-DVB-DVBT-
|.*/Linux-Inotify-
|.*/Linux-RTC-Ioctl-
|.*/Linux-stat-
|.*/Linux-Svgalib-
|.*/Linux-Input-Info-
|.*/Linux-Bootloader-
|.*/Linux-USBKeyboard-
|.*/Linux-SysInfo-
|.*/Linux-Input-Wiiuse- # pity
|.*/Linux-Fuser-
|.*/Linux-Unshare-
|.*/Net-Int-Stats- # explicitely checks for $^O eq linux
|.*/Passwd-Linux-
|.*/Sys-Statistics-Linux-
|PEKINGSAM/BioX-Map-0.0.12.tar.gz # uses bundled binaries only running on linux
)\d|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
perlconfig:
archname: "(-freebsd|darwin|MSWin32|cygwin)"
disabled: 1
---
comment: "FreeBSD specific"
match:
distribution: |
^(?x:
.*/FreeBSD-i386-Ptrace-
)\d|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXx
perlconfig:
archname: "(solaris|MSWin32|cygwin|darwin|linux)"
disabled: 1
---
# note: Mac-* is allowed, e.g. Mac-PropertyList works everywhere
comment: "Mac specific"
match:
distribution: '/(MacOSX-\D+|DBD-DtfSQLmac-\d|Net-Rendezvous-Publish-Backend-Apple-|AudioCD-Mac-)'
perlconfig:
archname: "(-freebsd|-linux|MSWin32|cygwin)"
disabled: 1
---
comment: "Cygwin specific"
match:
distribution: '/(Filesys-CygwinPaths)-\d'
perlconfig:
archname: "(-freebsd|darwin|MSWin32|linux)"
disabled: 1
---
comment: "this is solaris-specific"
match:
distribution: "/(IPC-Door-|Solaris-|Sun-Solaris-|Passwd-Solaris-|Software-Packager-Svr4-)"
perlconfig:
archname: "(-freebsd|MSWin32|cygwin|darwin|linux)"
disabled: 1
---
match:
distribution: '/Devel-DTrace-\d'
perlconfig:
archname: "(-freebsd|-linux|MSWin32|cygwin)"
disabled: 1
# freebsd has dtrace, but the option -h is not supported
---
comment: "assumes GNU make, hangs with BSD make"
match:
distribution: '/rpm-build-perl-0\.6\.5\.'
perlconfig:
archname: bsd
disabled: 1
---
comment: "Interactive, needs parameter from command line, maybe because of old CGI?"
match:
distribution: '/FormValidator-Simple-0\.22\.tar.gz'
perlconfig:
version: '^5\.00505$'
disabled: 1
---
comment: "Not on Windows systems"
match:
perlconfig:
archname: "MSWin32"
distribution: |
^(?x:
.*/Unix-Passwd-File-0\.24\. # https://rt.cpan.org/Ticket/Display.html?id=123507
)|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
disabled: 1
#---
#comment: "Not on my Linux system(s)"
#match:
# perlconfig:
# archname: "-linux"
# distribution: |
# ^(?x:
# .*/Bio-HTSTools-\d # no htslib available on debian systems
# )|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#disabled: 1
---
comment: "Not on my FreeBSD system(s)"
match:
perlconfig:
archname: "-freebsd"
distribution: |
^(?x:
.*/QtGui-\d
|.*/QtCore-\d # needs probably qt4-corelib, which is only available as port, not as package
|.*/Ogre-\d # no ogre installed here (freebsd), looks large, needs gnome
|.*/Ogre-BetaGUI-\d # dito
|.*/Physics-Udunits2-\d # no port for udunits
|.*/UnixODBC-\d # unixODBC exists on FreeBSD, but conflicts with iodbc, so skip this one
|.*/Text-Scws-\d # what is libscws? does not seem to exist in the freebsd ports
|.*/CIAO-Lib-Param-\d # needs cxcparam lib
|.*/Data-LetterTree-\d # needs lettertree lib, not a freebsd port
|.*/Convert-Ethiopic-\d # needs libeth, not in freebsd
|.*/String-Thai-Segmentation-\d # needs libwordcut
|.*/Text-Migemo-0\.01\. # fails if with libmigemo installed
|.*/Gtk2-WebKit-\d # needs webkit-1.0
|.*/IBM-LoadLeveler- # only linux and aix
|.*/text_hunspell_\d # is this hunspell? but probably not worth...
|.*/IPTables-IPv4-DBTarpit-0\.38\. # linux specific?
|.*/Net-DNS-SEC-Validator-\d # needs libval-config or so
|.*/Mobile-P2kMoto-\d # needs -lp2kmoto
|.*/Bio-Emboss-\d # needs a lot of libs
|.*/PDFLib-\d # a package exists, but is not installed properly here (pdflib_pl.pm is missing)
|.*/re-engine-Plan9-\d # strange libs needed
|.*/Calendar-CSA-\d # needs libcal etc.
|.*/NISPlus-\d # needs libnisdb etc.
|.*/Qt-\d # qt libs seem to be missing here...
|.*/Gtk2-Phat-\d # port exists, but no package...
|.*/WSO2-WSF-Perl-v?\d # needs a lot of axis2-related libs
|.*/OpenOffice-UNO-\d # needs openoffice sdk
|.*/Clutter-\d # no freebsd port?
|.*/Text-MeCab-\d # mecab port exists, but no package
|.*/sapnwrfc-\d # no port?
|.*/Gtk2-Ex-Geo-\d # needs libral, no port
|.*/Geo-Vector-\d # needs libral, no port
|.*/Geo-Raster-\d # needs libral, no port
|.*/PITA-Guest-Driver-Qemu-\d # no qemu as package
|.*/Statistics-Suggest-\d # no freebsd port
|.*/Algorithm-SVMLight-\d # port on freebsd is broken
|.*/Crypt-PBC-\d # port exists, but no package, and X11 problems...
|.*/CORBA-omniORB-\d # a lot of omniorb things need, did not check for availability of port...
|.*/Statistics-Cluto-\d # no cluto for freebsd
|.*/ARSperl-\d
|XXXX.*/Archive-ZZip-\d # not valid anymore: port exists, but currently does not build
|.*/Teradata-SQL-\d # requires copytypes.h, -lcliv2 etc., not found in freebsd or debian
|.*/Text-CSV-LibCSV-\d # no available as a freebsd port
|XXXX.*/Ganglia-Gmetric-\d # not valid anymore: needs ganglia-monitor-core port, N/A as package
|.*/Verilog-Pli-\d # needs some env variable set to find some header file
|WSNYDER/Verilog-Perl-3.313.tar.gz # hanging flex call without input files (gmake needed?)
|WSNYDER/Verilog-Perl-3.314.tar.gz # may hang, again flex call without input files?
|WSNYDER/SystemPerl-1.340.tar.gz # hanging flex call without input files (gmake needed?)
|WSNYDER/SystemPerl-1.341.tar.gz # hanging flex call without input files (gmake needed?)
|XXXX.*/Math-MPC-\d # needs mpc library, not available as port --- now, mpc is available
|.*/X11-Aosd-\d # no port
|.*/TCC-\d # freebsd: tcc only for i386 available
|.*/C-TCC-\d # freebsd: tcc only for i386 available
|.*/IPTables-libiptc-\d # no freebsd package, probably linux-centric
|.*/Crypt-Cracklib-\d # exists as freebsd port, but crack.h is not installed by default
|.*/Lingua-PT-Speaker-\d # needs some mbrola library
|.*/Device-Velleman-K8055-Fuse-\d # I don't think that I can use this
|.*/PDF-OCR-\d # needs tesseract
|.*/LibTracker-Client-\d # freebsd package exists, but hard too install on my old 6.1 system
|.*/DCOP-Amarok-Player-\d # not anymore on my i386 system
|.*/Net-Lorcon-\d # no fbsd port
|.*/Astro-SkyCat-\d # no fbsd port
|.*/CIsam-\d # no fbsd port for isam
|.*/Isam-\d # no fbsd port for isam
|.*/CyberSource-\d # needs ics2, no fbsd port
|.*/DCE-Perl-\d # no dce fbsd port
|.*/IPC-XPA-\d # no fbsd port for libxpa
|.*/Lingua-TH-Segmentation-\d # no fbsd port for -lwordcut
|.*/Math-Matlab-Engine-\d # no mathlab/-leng port
|.*/Mt-\d # needs some special device /dev/st0
|.*/tux_perl-\d # needs tuxmodule.h
|.*/pBLADE-\d # needs libblade-config
|.*/fameperl-\d # needs libchli
|.*/Perl-RPM-\d # needs rpm stuff (maybe available for fbsd, but not on my system)
|.*/Software-Packager-Rpm-\d # needs rpm stuff (maybe available for fbsd, but not on my system)
|.*/RPM2-\d # needs rpm stuff (maybe available for fbsd, but not on my system)
|XXX.*/PGPLOT-\d # libpgplot exists, but currently not installed from port
|XXX/OpenGL-\d # port exists, but currently not installed from port
|.*/SDL-sdlpl-\d # needs opengl, not yet installed
|.*/SDL_Perl-\d # needs opengl, not yet installed
|.*/Sys-Ptrace-\d # not for freebsd?
|.*/Math-GammaFunction-\d # there's a libRmath port, but this seems to require quadmath.h, which is only available in a special gcc47 directory (maybe one has to use explicitely gcc47?)
|.*/Language-XSB-\d # could not install xsb port
|.*/Language-Prolog-SWI- # could not install swig port
|.*/IO-Tty-Util-\d # needs pty.h, NA on freebsd
|.*/Tuxedo-\d # required includes not in ports
|.*/Teradata-BTET-\d # needs ppcmain, not in the ports
|.*/Statistics-R-\d # needs R package
|.*/Statistics-Gap-\d # needs cluto
|.*/Starlink-AST-\d # needs ast_link
|XXX.*/Search-Namazu-\d # needs namazu
|.*/Schedule-DRMAAc-\d # needs SGE_ROOT configured (and probably some prereqs)
|.*/SAVI-Perl-\d # needs savi library
|.*/PowerBuilder-ORCA-\d
|.*/Pogo-\d
|.*/PerlMaple-\d # needs maple 9
|.*/Cache-Swifty-\d # needs swifty, not in the ports
|.*/Geo-Coder-Ja-\d # needs -lgeocoderja, not in ports
|.*/Astro-WCS-LibWCS-\d # needs wcstools, not in ports
|.*/Ruby-0\.0[01234]\. # needs 1.8.6 --- latest fbsd port is 1.8.4, and 1.9.x (available in ports) does not work with the module
|.*/Image-DecodeQR-\d # needs libdecodeqr, not in ports
|.*/LSF_Base_\d # needs /etc/lsf.conf, not in ports?
|.*/LSF_Batch_\d # needs /etc/lsf.conf, not in ports?
|.*/Lucene-Search-Highlight-\d # needs clucene, not in ports
|.*/MonetDB- # the OpenSource monetdb system (http://monetdb.cwi.nl), no freebsd port for it
|.*/DBD-monetdb-\d # the OpenSource monetdb system (http://monetdb.cwi.nl), no freebsd port for it
|.*/iodbc_ext_\d # no fbsd port for iodbc.h
|.*/Net-Dnet-\d # no fbsd port for netdnet
|.*/DBD-SearchServer-\d # needs sqlc.h, not found in ports
|.*/Ar-\d # needs arextern.h, not in ports
|.*/Authen-ACE-\d # needs sdacmvls.h etc., not in ports
|.*/CodeBase-\d # needs d4all.h, not in ports
|.*/Net-Pcap-Easy-1\.31\.tar\.gz # this version hangs in multiple tests
|.*/Net-Pcap-Easy-1\.322\.tar\.gz # this version hangs in multiple tests
|.*/Astro-SLA-\d # needs slalib.h, not in ports
|.*/Bio-MedChunker-\d # insists on installing Bio-Medpost
|.*/TUXEDO-\d # not in ports
|.*/Db-GTM-\d # needs gtm/mumps, not in ports
|.*/LWES-\d # not in ports
|.*/Net-Arping-\d # libnet (libnet-config) not in ports
|.*/Authen-ACE4-\d # no port for acexport.h or libaceclnt.a
|.*/Lux-IO-\d # no port for luxio/btree.h
|.*/Net-Libproxy-\d # no port for libproxy-1.0.pc
|.*/Bio-SamTools-\d # no port for samtools (or libbam.a)
|.*/DBD-drizzle-\d # no port for libdrizzle
|.*/JSONRPC-Transport-TCP-0.02.tar.gz # hangs
|XXX.*/Pod-Wrap-0.01.tar.gz # deparse_cmp.t hangs, but only freebsd --- https://rt.cpan.org/Ticket/Display.html?id=99433 --- removed, because wait-and-kill-cpan-smoker entry exists
|.*/Metabase-1.001.tar.gz # flatfile.t hangs, probably on all *BSD systems (locking?)
|.*/IPC-AnyEvent-Gearman-0\.1\. # 01-ipc.t test hangs, 03-fork.t forks of a number of busy processes and hangs
|.*/IPC-AnyEvent-Gearman-0\.3\. # 01-ipc.t test hangs, 03-fork.t forks of a number of busy processes and hangs
|.*/IPC-AnyEvent-Gearman-0\.5\. # 01-ipc.t test hangs, 03-fork.t forks of a number of busy processes and hangs
|.*/IPC-AnyEvent-Gearman-0\.6\. # 01-ipc.t test hangs, 03-fork.t forks of a number of busy processes and hangs
|.*/IPC-AnyEvent-Gearman-0\.\d+\. # disabled all following versions
|.*/AnyEvent-Gearman-WorkerPool-0\.4\. # hanging tests (freebsd 9.2)
|.*/Plack-Middleware-JenkinsNotification-0.04 # 04_listener.t test hangs
|.*/Plack-Middleware-JenkinsNotification-0.05 # 04_listener.t test hangs
|.*/Twiggy-Prefork-0.01 # almost all tests hang
|.*/Twiggy-Prefork-0.02 # same
|.*/Twiggy-Prefork-0.04 # tests are hanging on fbsd8
|.*/Twiggy-Prefork-0.05 # tests are hanging on fbsd8 (probably because Server::Starter couldn't get built?)
|.*/Twiggy-Prefork-0.06 # same
|.*/Twiggy-Prefork-0.07 # same
|.*/Twiggy-Prefork-0.08 # tests are hanging on fbsd9
|.*/Mojolicious-Plugin-TtRenderer-1\.32\. # deep-recursion.t test hangs because of flock/File::Temp problems, see https://github.com/abh/mojox-renderer-tt/issues/33
|MUIR/modules/File-Flock-2013.06.tar.gz # hanging tests, see https://rt.cpan.org/Ticket/Display.html?id=84447
|JVANNUCCI/Parallel-Fork-BossWorkerAsync-0\.07\. # test suite hangs on freebsd 8+9
|.*/ZMQ-LibZMQ2-1\.07\. # tests hang on freebsd 9.2 and 10.0
|DMAKI/ZMQ-LibZMQ3-1.13.tar.gz # hanging tests on fbsd8
|DMAKI/ZMQ-LibZMQ3-1.15.tar.gz # hanging tests on fbsd9
|TEX/Data-Persist-0.12.tar.gz # locking issue (?) - https://rt.cpan.org/Ticket/Display.html?id=95349
|JKUTEJ/CPAN-Patches-0.04.tar.gz # test stops with "Reversed (or previously applied) patch detected! Assume -R? [y] Reversed (or previously applied) patch detected! Assume -R? [y]" (only freebsd, not debian/wheezy) -> https://github.com/jozef/CPAN-Patches/issues/1
|MICHALS/PMLTQ-1.0.0.tar.gz # tests hang (state lockf) (but would not succeed anyway because of dependency errors)
|MICHALS/PMLTQ-1.0.1.tar.gz # dito
|MICHALS/PMLTQ-1.1.0.tar.gz # dito
|.*/Alien-Google-GRPC-0\.06\. # fails anyway (gmake?), occupies much of disk space while building
|.*/Alien-Google-GRPC-0\.07\. # dito
|KIWIROY/tmp/Alien-KentSrc-0.3.tar.gz # fails to build on freebsd (gmake?), big build directory
|KIWIROY/tmp/Alien-KentSrc-0.4.tar.gz # -"-
)|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
disabled: 1
---
comment: "Not on the fbsd 10 moker"
match:
perlconfig:
myuname: "cvrsnica-freebsd-101"
distribution: |
^(?x:
.*/Alien-MuPDF-0\.010\. # crashes the machine (with vfs errors), reason unknown
|.*/Art-World-0\.18\. # huge memory consumption
)|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
disabled: 1
---
comment: "Not on the fbsd 9 moker"
match:
perlconfig:
myuname: "cvrsnica-freebsd-92"
distribution: |
^(?x:
.*/RDF-Simple-0.421.tar.gz # creates a lot of processes "/usr/perl5.20.0/bin/perl -Iblib/arch -Iblib/lib Makefile-orig.PL Makefile-orig", reason unknown
)|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
disabled: 1
---
comment: "Interactive configuration or tests"
match:
distribution: |
^(?x:
JNK/Tk-QuickTk-0.92.tar.gz
|.*/ApacheBench-\d # wants some URLs
|.*/Aut-\d # asks for a password
|.*/Authen-CyrusSASL-\d
|.*/B-Debugger-\d # needs to answer "c" or so (invisible)
|.*/CGI-Application-Plugin-LinkIntegrity-\d # asks from terminal something
|.*/Costume-Doublet-\d # shows eog window which has to be closed
|.*/Crypt-SKey-\d
|.*/CursesWidgets-\d
|.*/CursesApplication-\d
|.*/DBIx-SQLEngine-\d # wants a list of DSNs to test against (or n)
|.*/EZDBI-\d # interactivity in test, still in EZDBI-0.16
|.*/File-SmartTail-\d # wants rsh password
|XXX.*/FusionInventory-Agent-\d # postinstall questions (answer "n"!) --- not anymore
|.*/Games-Sudoku-SudokuTk-\d
|.*/Graphics-Libplot-\d # needs to click on windows
|.*/Gtk-Perl-0\.7009\. # interactive test
|.*/HiPi-0.23.tar.gz # needs sudo for installation
|.*/Imager-Album-0\.06\. # gtk based interactive test
|.*/Log-Dispatch-Tk-1\.8\.tar\.gz # probably because of possible interactive placement --- see https://rt.cpan.org/Ticket/Display.html?id=121483
|.*/Mail-SendEasy-\d # wants smtp server etc. for tests
|XXX.*/Math-Units-1\.3\. # in fact, not really interactive, but hangs because of "gunits -v" --- cannot reproduce problem anymore (fbsd9.2, fbsd10.0, debian/wheezy)
|.*/MMM-Text-Search-\d # asks for a search term while testing
|.*/Net-Ifconfig-Wrapper/Net-Ifconfig-Wrapper-\d # test asks question
|.*/Net-DBus-Skype-0.02.tar.gz # asks questions; check and fix! XXX
|.*/POE-Component-WebService-HtmlKitCom-FavIconFromImage-0.002.tar.gz # 00-load test always hangs on freebsd and needs manual killing
|.*/POE-Component-WWW-Google-PageRank-0\.04\.tar\.gz # 00-load test always hangs on freebsd and needs manual killing
|.*/Perl-Tags-0.\d+.tar.gz # asks for RETURN in test, seen with 0.26 and 0.28 and 0.31
|.*/PerlMagick-6\.40\. # composite+montage tests are interactive
|.*/Proc-JobQueue-0\.3\. # asks for a password
|.*/Proc-JobQueue-0\.4\. # still asks for a password, probably...
|.*/Puppet-Log-1.012.tar.gz
|.*/Qtk-QuickTk-0\.90
|.*/RAS-PortMaster-\d
|.*/SVN-Notify-Mirror-0.038.tar.gz # asks questions; check and fix! XXX
|.*/Schema-RDBMS-AUS-0.04.tar.gz # asks questions; check and fix! XXX
|.*/Script-0\.53\. # test is rather interactive
|.*/TAP-Convert-TET-0.2.1.tar.gz # asks questions; check and fix! XXX
|XXX.*/Term-Screen-\d # https://rt.cpan.org/Ticket/Display.html?id=25890 # not interactive anymore since 1.04
|.*/Term-Screen-Uni-\d # interactive
|.*/Term-Screen-ReadLine-\d
|.*/Term-ShellKit-\d
|.*/TextLinkAds-\d # wants a valid XML
|.*/Tk-CanvasLogo-\d
|.*/Tk-CursorControl-0\.[0123]\. # at least 0.4 has an automatic test
|.*/Tk-GridEntry-\d
|.*/Tk-HistMenu-\d
|.*/Tk-Image-Cut-\d
|.*/Tk-LabPopEntry-0.05.tar.gz
|.*/Tk-LockDisplay-\d
|.*/Tk-MListbox-\d
|.*/Tk-MenuHash-\d
|.*/Tk-Multi-1.006.tar.gz
|.*/Tk-PopEntry-0.06.tar.gz
|.*/Tk-TM-\d
|XXX.*/Tk-TextHighlight-\d # -> own distroprefs file
|.*/Tk-Text-SuperText-\d # interactive window, has to be closed manually (checked with 0.9.5)
|.*/Tk-Updown-\d
|.*/TkUtil-Configure-\d
|.*/UDPM-\d
|.*/WWW-Search-Googlism-\d # asking whether connected to internet
|.*/pgk_xs-0.05.tar.gz
|.*/net-smtp-retryable/Net-SMTP-Retryable-0.0.2.tar.gz # asks for smtp server and email address
|.*/OpenGuides-\d # needs openguides (not available on freebsd, but on linux), but asks way too many questions...
|.*/Quota-\d # interactive test --- with 1.7.2 (and probably somewhat earlier) there is a check for interactive tty, and skipping tests if it's non-interactive
|.*/Acme-Tests-\d # interactive test
|.*/MARC-Errorchecks-\d # unnecessary interactive test
|.*/Term-Twiddle-\d # interactive test
|.*/Geo-Weather-\d # interactive test
|.*/Acme-RPC-\d # strange interactive test
|.*/Forecast-IO-\d # test needs Forecast.io API key, interactively entered
|.*/WebService-FogBugz-XML-\d # many questions
|XSAWYERX/Test-SFTP-1.10.tar.gz # question in test -> https://github.com/xsawyerx/test-sftp/issues/1
|SLANNING/Wx-WidgetMaker-0.11.tar.gz # X11 window has to be closed
|SKUPSY/DDCCI-0.003.tar.gz # interactive question in test
|VDANJEAN/StorageDisplay-1.0.1.tar.gz # needs sudo for test
)|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
env:
PERL_BATCH: yes
disabled: 1
---
comment: "Not a CPAN module (but documentation, binaries...)"
match:
distribution: |
^(?x:
EIKEG/doc/perl-tutorial-DE_2.05.tar.gz
|EIKEG/doc/perl-tutorial-DE_\d.*
|KSTAR/20120109-NoSQL_and_MongoDB.tgz
|FLAVIOAM/guaja.tgz
|VTI/POD2-RU-PSGI-\d
|AUTOLIFE/MojoTest.tar.gz
|AUTOLIFE/Moj.tar.gz
|AUTOLIFE/Mojo-UserAgent_t.tar.gz
)|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
disabled: 1
---
comment: "Broken distribution (empty, without Makefile.PL/Build.PL, wrong permissions in tarball ...)"
match:
distribution: |
^(?x:
NINE/WWW-WebKit-0.02.tar.gz
|.*/RAR-Unrar-1.01 # wrong directory permissions
|OEMBRY/HTML2XHTML-0.04[ab]\.tar\.gz # wrong directory permissions http://rt.cpan.org/Ticket/Display.html?id=32099
|.*/Ante-Deluvian-Dialog-0.01.tar.gz # wrong directory permissions, fixed in 0.02
|.*/Math-Transform-List-1.001.tar.gz # wrong directory permissions? reported!
|.*/Math-Transform-List-1.002.tar.gz # wrong directory permissions? reported! https://rt.cpan.org/Ticket/Display.html?id=44450
|.*/Math-Disarrange-List-1.002.tar.gz # wrong directory permissions? reported!
|.*/Math-Subsets-List-1.002.tar.gz # wrong directory permissions? reported!
|.*/Statistics-ANOVA-0.062.tar.gz # wrong directory permissions? reported by Frank Wiegand
|.*/Statistics-FisherPitman-0.032.tar.gz # wrong directory permissions , reported
|.*/Statistics-Zed-0.022.tar.gz # wrong directory permissions?, same author
|.*/Statistics-Sequences-0.031.tar.gz # wrong directory permissions?, same author
|.*/Statistics-SDT-0.031.tar.gz # still ...
|.*/Math-Permute-List-1.002.tar.gz # wrong directory permissions?, reported!
|.*/Math-Permute-List-1.004.tar.gz # still ...
|.*/Math-Cartesian-Product-1.001.tar.gz # wrong directory permissions, same author as above
|.*/Math-Cartesian-Product-1.003.tar.gz # still ...
|.*/GNTP-Growl-0.\d+.tar.gz # wrong directory permissions (seen with 0.01, 0.03, 0.04)
|.*/XML-Reader-0.01.tar.gz # wrong directory permissions. same author like Term-Sprog (KEICHNER), see below. no RT queue!
|.*/DateTime-TimeZone-HPUX-0.01.tar.gz # wrong directory permissions
|.*/DateTime-TimeZone-HPUX-0.03.tar.gz # wrong directory permissions
|.*/DateTime-TimeZone-HPUX-0.04.tar.gz # wrong directory permissions
|.*/Time-Simple-0.055b.tar.gz # wrong directory permissions
|.*/Tk-GridColumns-0\.07\.tar\.gz # broken tarball
|SANKO/Net-BitTorrent-0\.027_001\.tar\.gz # maybe broken tarball; permission problems
|.*/Language-Lisp-ECLs-0\.21\.tar\.gz # broken tarball (permissions!) (fixed in later distros, at least in 0.27)
|.*/PDF-API2-0\.71\.tar\.gz # broken tarball (directory permissions!) (http://rt.cpan.org/Public/Bug/Display.html?id=38376, fixed in later distros, at least in 0.72.003)
|.*/Pod-Trial-LinkImg-0.005.tgz # broken tarball? (directory permissions?)
|ARFREITAS/DTS-0\.07\.tar\.gz # distribution has bad permissions (anyway a windows-only package, it seems)
|LDOMKE/Tk-XPMs-1.10.tar.gz # distribution has bad directory permissions <http://rt.cpan.org/Public/Bug/Display.html?id=41176>, fixed in 1.11
|RENEEB/Wx-Perl-DirTree-0.01.tar.gz # distribution has bad directory permissions, fixed in 0.06, it seems
|RENEEB/Tk-Airports-0.04.tar.gz # distribution has bad directory permissions <http://rt.cpan.org/Public/Bug/Display.html?id=41433>, fixed in 0.061
|.*/Term-Sprog-0.01.tar.gz # distribution has bad directory permissions
|.*/Term-Sprog-0.03.tar.gz # distribution has still bad directory permissions. Reported by email, because there's no RT queue for this package
|.*/Term-Sprog-0.04.tar.gz # distribution has still bad directory permissions
|.*/Tk-Wizard-2\.14[34]\.tar\.gz # distribution has bad directory permissions <http://rt.cpan.org/Public/Bug/Display.html?id=42080>
|.*/Catalyst-View-Component-SubInclude-0.0[23]\.tar.gz # distribution has bad directory permissions
|BJOERN/List-OrderBy-0.1.tar.gz # permission problem (reported by mail)
|MTHURN/I18N-Charset-1.403.tar.gz # permission problem (https://rt.cpan.org/Ticket/Display.html?id=82739) (all of the following: a Module-Install problem? https://rt.cpan.org/Ticket/Display.html?id=83743)
|MTHURN/I18N-Charset-1.404.tar.gz # probably also permission problem (without checking...)
|MTHURN/I18N-Charset-1.407.tar.gz # probably also permission problem (without checking...)
|MTHURN/WWW-Ebay-0.095.tar.gz # permission problem (https://rt.cpan.org/Ticket/Display.html?id=88205)
|MTHURN/WWW-Search-Ebay-3.024.tar.gz # permission problem (https://rt.cpan.org/Ticket/Display.html?id=83740)
|MTHURN/WWW-Search-Ebay-3.025.tar.gz # probably also permission problem (without checking...)
|MTHURN/WWW-Search-Ebay-3.029.tar.gz # again permission problem (https://rt.cpan.org/Ticket/Display.html?id=83740)
|MTHURN/WWW-Search-Ebay-3.032.tar.gz # again permission problem (https://rt.cpan.org/Ticket/Display.html?id=83740)
|MTHURN/WWW-Search-Ebay-Europe-2.011.tar.gz # also permission problem (https://rt.cpan.org/Ticket/Display.html?id=83741)
|MTHURN/WWW-Search-Ebay-Europe-2.012.tar.gz # also permission problem (without checking...)
|MTHURN/WWW-Search-Ebay-Europe-2.013.tar.gz # also permission problem (without further checking...)
|MTHURN/WWW-Amazon-Wishlist-2.009.tar.gz # also permission problem (https://rt.cpan.org/Ticket/Display.html?id=91441)
|.*/Getopt-ExPar-1\.01\.tar\.gz # no Makefile.PL, would be tested every time
|.*/Biblio-Citation-Compare-0.05.tar.gz # no Makefile.PL, would be tested every time
|.*/Biblio-Citation-Compare-0.51.tar.gz # almost empty tarball - https://rt.cpan.org/Ticket/Display.html?id=113362
|.*/WWW-Finances-Bovespa2-0.(01|02|03).tar.gz # no Makefile.PL, would be tested every time; wrong directory hierarchie
|.*/Template-Plugin-JSON-Escape-0.01 # broken dist containing only META.yml
|JJORE/B-Utils-0.16. # broken dist containing only META.yml
|.*/Mojolicious-Plugin-Mobi-0.02.tar.gz # broken dist, only a META file
|.*/PNI-Core-0.06-withoutworldwriteables.tar.gz # broken dist, only META files, no x-bit on directories
|.*/AnyEvent-Peer39-0.3.tar.gz # only META
|.*/App-epic-0.014.tar.gz # only META
|JRUBIN/FT817OS-0.9.2.tar.gz # no Makefile.PL
|JRUBIN/FT817OS-0.9.3.tar.gz # no Makefile.PL
|JRUBIN/ft817os-0.9.tar.gz # no Makefile.PL
|JPRIYAL/NET-NETCONF.zip # no Makefile.PL
|FELIXL/vptk/vptk_w_2_42b.tgz # no Makefile.PL
|WOLDRICH/App-re.pl-0.122.tar.gz # empty dist
|WOLDRICH/re.pl-0.120.tar.gz # empty dist
|.*/Data-Dumper-Store-1.00.tar.gz # almost empty dist, just meta file
|WOLDRICH/Bundle-Woldrich-Term-0.02.tar.gz # nearly empty tarball, just a META.yml
|NIKOLAS/DateLocale-1.20.tar.gz # empty tarball
|NIKOLAS/DateLocale-1.29.tar.gz # empty tarball
|SRCHULO/DigitalOcean-0.10.tar.gz # empty tarball
|BPMEDLEY/Mojo-IOLoop-ProcBackground-0.05.tar.gz # empty tarball
|PMB/Heise-Shariff-1.01.tar.gz # empty tarball
|PMB/Shariff-1.01.tar.gz # also empty
|DWHEELER/Pod-Simple-3.29_4.tar.gz # empty tarball (except META) (https://rt.cpan.org/Ticket/Display.html?id=102186)
|GWS/Map-Tube-Plugin-FuzzyFind-0.01.tar.gz # wrong permissions in tarball (sent mail)
|RGARTON/Statistics-Zed-0.071.tar.gz # wrong permissions in tarball (fixed in 0.072)
|RGARTON/Statistics-Autocorrelation-0.05.tar.gz # wrong permissions in tarball - https://rt.cpan.org/Ticket/Display.html?id=91704
|NJLG/Rethinkdb-0.08.tar.gz # probably empty tarball
|SCRIPTS/WebsocketsServer.zip # no Makefile.PL
)|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
disabled: 1
---
comment: "Tests which should not run in a parallel smoke"
match:
distribution: |
^(?x:
.*/Daizu-0\.3\.
|.*/B-XPath-0\.01\.
|.*/AmbientOrb-Serial-0\.02\.
|.*/Finance-Bank-DE-NetBank-1\.05\. # mymeta+sig problem, it seems
|.*/Sub-Nary-0\.03\. # author declares the module as broken, see https://rt.cpan.org/Ticket/Display.html?id=66913
|.*/Text-Mining-0\.08\. # not a single PASS, but may differ between NA, FAIL, and DISCARD
|.*/Cache-Sliding-1\.0\.0\. # flapping - not often, but it happens on my freebsd box
|.*/Server-Starter-0\.11\. # flapping - not often, but it happens on my freebsd box
|.*/Time-Mock-v0\.0\.2\. # flapping - time-related
|.*/WWW-Shorten-SnipURL-2\.00\. # flapping - maybe website does not answers
|.*/Curses-Toolkit-0\.206\. # flapping - not often
|.*/Lexical-Util-0.8 # "not supported past Perl version 5.8.x"
|.*/Task-BeLike- # I like to have better control of what is smoked
|.*/Task-Setup- # dito
|.*/File-Info-1.02.tar.gz # does not build most of the time, probably broken dependency spec
|.*/Dist-Zilla-Plugin-MetaProvides-FromFile-1.11060208. # dz2-provides.t may fail, perl version independent
|.*/TheSchwartz-1\.10\. # t/parallel-workers.t often hangs on freebsd
|.*/Email-Send-TheSchwartz-0.01. # installs TheSchwartz without using CPAN.pm
|.*/Algorithm-DecisionTree-1\.2\. # flapping https://rt.cpan.org/Ticket/Display.html?id=67356
|.*/Algorithm-TokenBucket-0\.32\. # occasional test failures https://rt.cpan.org/Ticket/Display.html?id=67357
|.*/Boost-Graph-1\.4\. # test suite may segfault, see http://www.cpantesters.org/cpan/report/07032416-b19f-3f77-b713-d32bba55d77f
|.*/Cache-Historical-0\.03\.
|.*/IPC-MorseSignals-0\.15\.
|.*/Lingua-EN-SimilarNames-Levenshtein-0\.06\. # Wall vs. Wayne
|.*/WebService-FuncNet-0\.2\. # test suite may hang (t/live_test.t is likely to sleep forever), or is flapping (website related?)
|.*/Net-SSH-Any-0\.04\. # tries to access "ssh localhost", may result in a host key question
)|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
env:
PERL_PARALLEL_SMOKER: yes
disabled: 1
---
comment: "Tests likely to hang, or some other hangs, so disable in PERL_BATCH mode"
match:
distribution: |
^(?x:
.*/IPC-Shareable-0\.60\.
|XXX.*/Pod-Tidy-0\.10\. # seems to work only on Linux, according to matrix, on FreeBSD the deparse cmp test hangs - hangs also on MacOSX https://rt.cpan.org/Ticket/Display.html?id=51281 --- now handled by wait-and-kill-cpan-smoker
|.*/POE-Component-Omegle-0\.02\. # eating a lot of CPU (maybe only if WWW-Omegle could not be installed which can happen if HTTP-Async fails, which happens quite often)
|.*/Template-Provider-HTTP-0\.02\. # simple.t may hang
|.*/HTML-Tested-JavaScript-0\.25\. # GtkMozEmbed.t may hang
|.*/Ocsinventory-Agent-\d # invisible postinstall questions (answer "n"!)
|.*/Bootylicious-0\.910101\. # app.t test may hang
|.*/Bootylicious-Plugin-GoogleAnalytics-0\.990201\. # may also hang
|.*/Log-Syslog-Fast-0\.30\. # may hang
|.*/MojoX-Session-Store-File-0\.01\. # plugin.t may hang
|.*/MojoX-Session-0\.(19|20|23)\. # plugin.t may hang
|.*/MojoX-Renderer-XSLT-0\.01\. # basic.t and 02-params.t may hang
|XXXBFG/MojoX-Run-0.15.tar.gz # the mojox-run-* tests hang --- currently does not hang (but tests fail)
|XANTUS/MojoX-AIO-0.02.tar.gz # the t/00_simple.t test may hang
|.*/Mojolicious-Plugin-BasicAuth-0\.02\. # auth.t may hang
|.*/Gearman-Driver-0\.02005\. # may hang
|.*/Gearman-Driver-0\.02008\. # may hang
|.*/Test-WWW-Mechanize-Mojo-v0\.0\.4\. # auth_test.t may hang
|.*/Event-RPC-1\.01\. # 04.cnct-auth-ssl.t and many others may hang
|.*/Maplat-0\.99\. # make test may hang
|.*/Pod-Simple-XHTML-BlendedCode-1\.003\. # probably asks invisible questions in Build.PL
|.*/CGI-Ex-2\.(27|32)\. # waits for terminal input (why?) https://rt.cpan.org/Ticket/Display.html?id=48605
|.*/Audio-aKodePlayer-0\.01\. # 10-player.t may hang
|.*/REST-Application-0\.992\. # ttyin
|.*/Net-Proxy-0\.12\. # 36ssl_tcp.t may hang
|.*/Net-Proxy-0\.13\. # 36ssl_tcp.t may hang --- https://rt.cpan.org/Ticket/Display.html?id=100007
|.*/Rubric-0\.145\. # t/www/www_main.t may hang
|.*/HTML-Tempi-0\.01\. # test.pl may hang
|XXX.*/File-FDpasser-0\.09\. # t12serv_cli.t may hang -> still hangs, but handled by wait-and-kill-cpan-smoker
|.*/POE-Component-Child-1\.39\. # test may hang
|.*/OpenFrame-Segment-Apache-1\.20\. # apache.t may hang
|.*/WWW-Google-Groups-0\.09\. # test.pl may hang
|.*/CGI-Application-Plugin-FormState-0\.12\. # tests may hang
|.*/TiVo-HME-1\.3\. # 1.t test may hang
|.*/DBIx-XMLServer-0\.02\. # seemingly asks for database name
|.*/Teamspeak-0\.6\. # 10distribution.t may hang
|.*/XiaoI-0\.03\. # XiaoI.t may hang
|.*/POE-Component-MessageQueue-0\.2\.9\. # t/09_ack_auto.t may hang
|.*/Test-WWW-Simple-0\.29\. # may hang, maybe if Regexp::Common is not installed
|.*/Mojolicious-0\.999926\. # many tests may hang
|.*/Test-WWW-Mechanize-Mojo-v0\.0\.5\. # tests may hang
|.*/Mojolicious-Plugin-ContentManagement-0\.011\. # tests may hang
|.*/FlatFile-DataStore-0\.1[34]\. # tests may hang
|.*/RDF-ACL-0\.100\. # tests may hang
|.*/HTTP-LoadGen-0\.0\d\. # thread test may hang (seen with 01,02,04,05)
|.*/Gtk2-MozEmbed-0\.08\. # may hang
|.*/Mildew-Setting-SMOP-0.03.tar.gz # hangs in Build
|.*/Mojolicious-Plugin-TweetButton-0.0002.tar.gz # may hang if Mojo does not build
|KAMAL/LiteProcess-0.01.tar.gz # hangs
|BINGOS/Module-Install-ReadmeFromPod-0.10.tar.gz # hangs
|.*/Module-Install-GithubMeta-0.10- # hangs in 01compile, needs a ctrl-d
|XAICRON/Module-Install-TestTarget-0.13. # hangs, probably because of the MI::RPM::WriteAll problem
|XAICRON/Module-Install-TestTarget-0.15. # hangs, probably because of the MI::RPM::WriteAll problem
|BRADFITZ/TheSchwartz-Worker-PubSubHubbubPublish-1.00.tar.gz # hangs
|DOY/IO-Socket-Telnet-HalfDuplex-0.02.tar.gz # tests may hang
|MUIR/modules/Log-Parallel-0.303.tar.gz # jobqueue test may hang
|MSCHOUT/Apache-Profiler-0.10.tar.gz # may hang
|.*/Math-TrulyRandom-1.0 # test hangs, on freebsd and linux
|.*/Net-Mollom-0.07 # may hang
|KTHAKORE/SDL-2.515.tar.gz # may hang
|KTHAKORE/SDL-2.516.tar.gz # dito
|MDORMAN/Memcached-Client-0.96.tar.gz # killing the CPAN client
|SHLOMIF/Net-SeedServe-0.2.1.tar.gz # t/protocol.t
|.*/HTTP-Server-Simple-Recorder-0.03 # may hang (01.live.t)
|.*/POE-Component-Server-Postfix-0.001 # may hang
|SPROUT/JE-0.049.tar.gz # may hang
|BARBIE/CPAN-YACSmoke-Plugin-NNTPWeb-0.07.tar.gz # may hang
|XXXNUFFIN/Directory-Transactional-0.09.tar.gz # may hang on freebsd - but wait-and-kill takes care of it, so it's enabled again
|MLEHMANN/AnyEvent-FastPing-1.13.tar.gz # load test hangs
|SAMV/Lingua-Translate-0.09. # systran test hangs --- currently (2015-03-09) it does not hang, but tests fail, and reports cannot be sent because Pod-Constants version could not be determined
|SPROUT/JE-0.051. # test hangs with 5.13.5
|.*/Device-RFXCOM-1.103240 # endless loop in several tests
|PFARR/Net-SMS-Clickatell-SOAP-v0.01. # invisible question
|DPCHRIST/Dpchrist-Is-1.027. # pod2html in make phase does not work
|DPCHRIST/Dpchrist-LangUtil-1.013. # pod2html in make phase does not work
|DPCHRIST/Dpchrist- # seems to be a systematic error, skip all
|DPCHRIST/Bundle-Dpchrist- # this one, too
|ZENTOOO/Plack-App-Proxy-Selective-0.06. # "selective" test hangs
|BLX/XSDSQL_(20101209|\d+). # interactive questions about database parameters
|GWYN/POEx-HTTP-Server-0.0600. # 26... test hangs
|GWYN/POEx-HTTP-Server-0.0700. # 26... test hangs
|GWYN/POEx-HTTP-Server-0.0800. # test hangs ... but 0.0902 looks fine, it seems
|FRODWITH/POEx-Role-PSGIServer-1.110670.tar.gz # endless loop, filling up /tmp
|.*/LWP-UserAgent-POE-0.03. # lwp_use... test hangs
|.*/WebService-Async-0.03.tar.gz # another hanging one
|.*/POEx-WorkerPool- # endless loop Nonexistent 'POE::Wheel::Run(1) -> select stdin' event delivered to Worker:E6E22AE8-5F0F-11E0-A7EF-02CBD929F522
|.*/Crypt-RandPasswd-0\.02\. # test sometimes hangs, see https://rt.cpan.org/Ticket/Display.html?id=4090
|.*/XXXPOSIX-RT-Signal-0\.010\. # t/10-basics.t test hangs # but not always, so disabled the disabled
|.*/Gearman-Spawner-1.11.tar.gz # t/09-respawn.t test may hang
|MNUNBERG/Couchbase-Client-0.17_0.tar.gz # hangs
|MNUNBERG/Couchbase-Client-0\.18\. # hangs
|MNUNBERG/Couchbase-Client-1.0.1.tar.gz # hangs
|.*/Net-MessageBus-0\.03\. # test hangs
|.*/Net-MessageBus-0\.04\. # test hangs
|.*/Test-Attribute-AutoLevel-0.02- # basic.t hangs on freebsd
|.*/Test-Attribute-AutoLevel-0.03.tar.gz # basic.t hangs on freebsd
|MASANORIH/Net-IPMessenger-0.13.tar.gz # hanging tests
|MASANORIH/Net-IPMessenger-0.14.tar.gz # same (t/01.network.t hangs)
|HAYAJO/Net-IPMessenger-Bot-0.01.tar.gz # also hanging
|HAYAJO/Net-IPMessenger-Bot-0.02.tar.gz # also hanging
|PEVANS/IO-Async-Loop-Glib-0.20.tar.gz # t/15share-child.t hangs
|RUSSOZ/Net-LDAP-SimpleServer-0.0.13.tar.gz # t/04-bind.t test hangs
|RUSSOZ/Net-LDAP-SimpleServer-0.0.14.tar.gz # dito
|RUSSOZ/Net-LDAP-SimpleServer-0.0.15.tar.gz # dito (and 05-search.t hangs)
|XXXRUSSOZ/Net-LDAP-SimpleServer-0.0.17.tar.gz # dito (t/14-bind.t and 15 hang) - 20150527, checked again: does not hang anymore (freebsd, linux)
|JJORE/App-Stacktrace-0.(03|04|05|06|07).tar.gz # test hangs (gdb)
|.*/MozRepl-RemoteObject-0.2[23].tar.gz # hanging tests
|.*/AnyEvent-Retry-0.03.tar.gz # hanging test (release-pod-syntax?)
|LEONT/Signal-More-0.001.tar.gz # basics test may hang (happened at least twice on my machine)
|DOHERTY/App-Sysadmin-Log-Simple-0.004.tar.gz # tests take forever on a freebsd system
|BOOK/HTTP-Proxy-0.24.tar.gz # tests hang, at least with 5.12.3+4
|HANENKAMP/Bot-Net-0.1.0.tar.gz # tests hang, at least with 5.12.3+4
|.*/Net-Plurk-0.09. # was hanging
|HKOBA/YATT-v0.0.5.tar.gz # was hanging
|KTHAKORE/SDL_Perl-v2\.2\.6\. # hangs on freebsd, both 5.10.1 and 5.12.0
|TELS/sdl/SDL-App-FPS-0\.21\. # also hangs, tries to include SDL or what?
|SULLR/IO-Socket-SSL-1.30.tar.gz # test hangs under FreeBSD, needs more research!
|.*/Task-LiveDVD-FrankfurtPM-0\.03\. # testing all the dependencies takes forever
|CHSTROSS/NetServer-Generic-1.03.tar.gz # test.pl hangs
)|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
env:
PERL_BATCH: yes
disabled: 1
---
comment: "Various reasons"
match:
distribution: |
^(?x:
HBIERSMA/MQSeries-\d # works only with an IBM MQSeries installation
|.*/smokeinabox-\d
|.*/illguts-\d # has no test target
|.*/WWW-Google-API-\d # asks for Google API key
|.*/Acme-BadExample-\d # causes endless loops in all modules trying to parse the version
|.*/Acme-Letter-0\.02\. # https://rt.cpan.org/Ticket/Display.html?id=117497 (installs test.pl)
|ANARION/Acme-Stegano-0.02.1.tar.gz # vvvvv generated Makefile.PL vvvvvvvvv
|ANARION/DNS-TinyDNS-0.22.tar.gz
|ANDOT/Crypt-XXTEA-1.00.zip
|CCZ/XML-WMM-ASX-0.30.tar.gz
|CML/Sendmail_M4.0.29a.tar.gz
|DAMBAR/Catalyst-Plugin-Imager-0.01.tar.gz
|DONGYI/SQL-Translator-Producer-DBIx-Class-File-Simple-0.1.tar.gz
|DOPACKI/authen-rbac-0.1.tar.gz
|DSUGAL/VMS_Persona-1_01.zip
|EVANZS/PDF-CreateSimple-1-1.tar.gz
|FOOCHRE/MIDI-Realtime-0.01.tar.gz
|GOYALI/SMS_API_4.01.1.tar.gz
|GWELCH/Object-Interface-1.1.zip
|INVENTOR/ScatterPlot-0_2.tgz
|JETTRA/Geo-Coder-Canada-0.01.tar.gz
|JOEPHAYES/win32-guidgen-0.04.zip
|JSMYSER/WWW-Search-PRWire-1.0.tar.gz
|KENWU/Algorithm-Line-Bresenham-C-0.1.zip
|MCGREGOR/Oracle-Sqlldr-0.13.tar.gz
|MENGEL/FastGlob-1.3.tar.gz
|MKHRAPOV/Chemistry-MolecularMass-0.1.tar.gz
|NIELSEN/Class-Inheritance-0.03.tar.gz
|ORANGE/MD5Check.zip
|PERFORIN/WWW-Wuala-00.1.zip
|RHANSON/xml-rax-0.01.tar.gz
|RLAUGHLIN/UDPmsg-0.11.tar.gz
|RSHADOW/Mojolicious-Plugin-UniqueTagHelpers-0.02.tar.gz
|SARENNER/Net-IPAddress-1.10-PPM.zip
|SAULIUS/Date-Holidays-LT-0.01.tar.gz
|SEOVISUAL/WebService-SEOmoz-FreeAPI-0.01.tar.gz
|SIMATIKA/subclustv1_0.tar.gz
|SRIRAM/examples.tar.gz
|UNDERMINE/Acme-PGPSign-0.01.tar.gz
|VSPADER/Archive-ZZip-0.13.tar.gz
|WIHAA/Graphics/Graphics-EPS-3.00.tar.gz
|WSYVINSKI/Math-Vector-1.03.tar.gz
|WSYVINSKI/Tie-TieConstant-1.01.tar.gz
|YHA/Pod-Clipper-0.01.tar.gz # ^^^^^^ generated Makefile.PL ^^^^^^^
|BROWSERUK/ppm/ # contains only ppm packages, unsmokable
|FALCONE/RT-OnlineDocs-\d # needs path to RT
|.*/RTx-AttachmentZip-\d
|.*/RTx-AuthTool-\d
|.*/RTx-BecomeUser-\d # needs RT
|.*/RTx-CFC-\d
|.*/RTx-Calendar-\d # needs RT
|.*/RTx-EmailCompletion- # all RT extensions probably need path to RT
|.*/RTx-FillTicketData-\d
|.*/RTx-Foundry-\d
|.*/RTx-From-\d
|.*/RTx-GoogleAnalytics-\d
|.*/RTx-MD5Auth-\d
|.*/RTx-QuickUpdateUserComments-\d
|.*/RTx-RT34-Bulk-CF-Edit-\d
|.*/RTx-RemoteLinks-\d
|.*/RTx-RightsMatrix-\d # needs RT
|.*/RTx-S3Invoker-\d
|.*/RTx-Search-FullTextByDefault-\d
|.*/RTx-Shredder-\d # needs RT
|.*/RTx-Tags-\d
|.*/RTx-TicketlistTransactions-\d
|.*/RTx-Timeline-\d
|.*/RTx-WebCronTool-\d
|.*/RTx-WorkflowBuilder-\d
|.*/RT-Action-AssignUnownedToActor-\d
|.*/RT-Action-AutoAddWatchers-\d
|.*/RT-Action-LinearEscalate-\d # needs RT
|.*/RT-Action-MoveQueueBySubject-\d
|.*/RT-Action-NotifyGroup-\d
|.*/RT-Action-RequestUpdateCallback-\d
|.*/RT-Action-SetPriorityFromHeader-\d
|.*/RT-Action-SetStatus-\d
|.*/RT-Action-UpdateIcestack-\d
|.*/RT-Atom-\d
|.*/RT-Authen-Bitcard-\d
|.*/RT-Authen-CookieAuth-\d
|.*/RT-Authen-ExternalAuth-\d
|.*/RT-Authen-Federation-\d
|.*/RT-Authen-OAuth2-\d
|.*/RT-Authen-OpenID-\d
|.*/RT-Authen-PAUSE-\d
|.*/RT-Authen-Token-\d
|.*/RT-BugTracker-Public-\d
|.*/RT-BugTracker-\d
|.*/RT-Condition-Complex-\d
|.*/RT-Condition-NotStartedInBusinessHours-\d
|.*/RT-Condition-OwnershipChanges-\d
|.*/RT-Condition-UntouchedInBusinessHours-\d
|.*/RT-Crypt-SMIME-\d
|.*/RT-Extension- # all RT extensions probably need path to RT
|.*/rt-extension- # lowercase
|.*/RT-IODEF-\d
|.*/RT-Integration-SVN-\d
|.*/RT-Interface-Email-Filter-CheckMessageId-\d
|.*/RT-Interface-Email-RequiredHeaders-\d
|.*/RT-Interface-Email-TakeByMail-\d
|.*/RT-Journal-\d
|.*/RT-CIFMinimal-\d
|.*/RT-OnlineDocs-\d
|.*/RT-SimpleGPGVerify-\d
|.*/RT-Extension-StallFutureTicket-\d
|.*/RT-TicketWhiteboard-\d
|.*/RT-Todo-\d
|.*/RT-View-ConciseSpreadsheet-\d
|.*/RT-View-Directory-\d
|.*/RT-View-Tree-\d
|.*/RTFM-Extension-ArticleTemplates-\d
|.*/RTIR-Extension-MISP-\d
|.*/NBU-\d # needs NetBackup
|.*/Lingua-CollinsParser-\d # needs some grammar files
|.*/AI-FANN-\d # needs -ldoublefann
|KANE/CPANPLUS-0\.82\.tar.gz # wants my root password using sudo
|.*/STAFService-\d # needs STAF 3
|XXX.*/Search-Xapian-\d # needs xapian - at least debian/wheezy has libxapian-dev
|.*/BS2000-LMS-\d # only for BS2000
|.*/Patch-SREZIC-Tk- # not necessary anymore
|.*/Algorithm-OpenFST-\d # needs some additional stuff
|.*/Audio-Ecasound-\d # I have only an old ecasound available, also expected problems with unthreaded perls
|.*/Filesys-SamFS-\d # seems to be sun-only
|.*/DBD-DB2-\d # needs DB2 database
|.*/DBD-Sybase-\d # needs Sybase database
|.*/sybperl-\d
|.*/Sybase-Simple-\d
|.*/Sybase-RepAgent-\d
|.*/Sybase-Xfer-\d
|.*/DBD-Unify-\d # some database
|.*/DBD-InterBase-\d
|.*/DBD-PrimeBase-\d
|.*/PgSQL-\d # dito
|.*/Postgres-\d # dito
|.*/pgsql_perl5-\d # needs postgres env variables
|.*/DBD-MaxDB-\d
|.*/DBD-Adabas-\d
|.*/DBD-Informix-\d
|.*/DBD-Informix4-\d
|.*/DB2-Admin-\d
|.*/DBD-SQLAnywhere-\d
|.*/DBD-ASAny-\d
|.*/DBD-Teradata-\d
|.*/DBD-Mimer-\d
|.*/DBD-Redbase-\d
|.*/DBD-Solid-\d
|.*/DBD_SQLFLEX_\d
|.*/DBD-DBMaker-\d
|.*/DBD-EmpressNet-\d
|.*/DBD-Fulcrum-\d
|.*/DBD-Informix4\d
|.*/DBD-Illustra-\d
|.*/DBD-Ingres-\d
|.*/DBD-TimesTen-\d
|.*/DBIx-TableReferences-MSSQL-\d # needs mssql database
|.*/DB-Appgen-\d
|.*/ObjStore-\d
|.*/Tivoli-AccessManager-Admin-\d # unlikely I have this installed anywhere
|.*/Net-Amazon-AWIS-\d # needs credentials
|.*/VCS-CMSynergy-\d
|.*/Mail-Cclient-\d # probably needs Cclient?
|.*/Net-LDAPapi-\d # needs probably libraries I don't have, also does not use prompt(), so determining the questions is difficult
|.*/Text-Templar-2\.43 # wants to install ExtUtils::AutoInstall
|.*/Tie-Google-\d # ask for the google api key, which is possibly visible in test results
|.*/tkjuke-\d
|.*/Net-SLP-\d # needs a running slpd
|.*/AFS-Monitor-\d # needs afs
|.*/AFS-\d # needs afs
|.*/Alzabo-GUI-Mason-0\.1201\.tar\.gz # seems to cause endless loops (not CPAN.pm's fault!)
|.*/Game-Planeshift-Info-0\.5\. # seems to cause an endless loop in the test
|.*/Net-Amazon-Thumbnail-\d # I have no amazon key
|.*/CAS-\d # needs CAS database
|.*/CAS-Apache-\d # probably also needs CAS database (and it also asks questions)
|.*/Graph-Maker\.zip # wrong distname format
|CHI/link_NCBI\.zip # wrong distname format
|.*/tic.tar.gz # wrong distname format
|.*/swd.tar.gz # wrong distname format
|.*/RadiusPerl-\d # probably need things I do not have
|.*/Mobile-Wurfl-\d # needs a database
|.*/XAO-Indexer-\d # needs a database (2018-10: does not exist anymore?)
|.*/XAO-ImageCache-\d # needs a database (2018-10: does not exist anymore?)
|.*/XAO-Content-\d # needs a database (2018-10: does not exist anymore?)
|.*/XAO-Catalogs-\d # needs a database (2018-10: does not exist anymore?)
|.*/Authen-Krb5-Admin-\d # asks questions
|DCOPPIT/Benchmark-Timer-0.7100.tar.gz # problems with ExtUtils::AutoInstall
|.*/Rsync-Config-\d # problems with ExtUtils::AutoInstall
|.*/Apache-AuthTypeKey-\d # problems with ExtUtils::AutoInstall or Module::Install
|.*/Wiki-Gateway-\d # problems with ExtUtils::AutoInstall or Module::Install
|.*/App-GUI-Notepad-\d # problems with Module::Install
|.*/ASNMTAP-\d # asks questions
|.*/Keystone-Resolver-\d # needs special database
|.*/Net-Radius-Server-\d # too many questions in test suite
|.*/Net-Radius-Client-\d # probably needs something I do not have
|.*/bbobj-\d # too many (invisible) questions
|.*/WWW-Autosite-\d # too many (invisible) questions
|.*/Apache-Wyrd-\d # wants to call home
|.*/Proc-JobQueue-0.3.tar.gz # asks for password
|.*/RPC-Oracle-\d # needs access to db
|.*/Oracle-Debug-\d # needs oracle
|.*/Oracle-CAPI-\d # needs oracle
|.*/extproc_perl-\d # needs oracle
|.*/Oracle-SQLLoader-\d # needs oracle
|.*/Salesforce-\d
|.*/Cisco-Conf-\d
|.*/Cisco-Management-\d
|.*/Winamp-Control-\d
|.*/Business-CSI-\d # needs some LinkPoint lib
|.*/WebService-Mappoint-\d # needs a mappoint account
|.*/LSF-Base-\d # what's this???
|.*/WebService-FreeDB-\d # too many warnings, overflowing /tmp with CPAN::Reporter
|.*/Qmail- # needs qmail
|.*/WWW-LEO-0\.01\. # infinite loop, module's fault