This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
bisect-runner.pl should patch SDBM_File for parallel builds.
[perl5.git] / Porting / deparse-skips.txt
CommitLineData
2722144b
MH
1# List of test files to ignore/skip for deparse tests.
2#
3# This is used by t/TEST.
4#
5# Those under DEPARSE_FAILURES are ones that we need to fix or
6# we expect to fail. These tests will still be run and checked to
7# see if they fail as expected.
8#
9# Those under DEPARSE_SKIPS we don't want to even attempt running
10# because they might do bad things to our system (memory exhaustion,
11# etc), so they will be completely skipped from the test run.
12#
13# Paths are relative from t/
14#
15# Paths that end with '/' are directories to skip entirely
16#
17# Format:
18# __DEPARSE_FAILURES__
19# ../path/to/test1
20# ../path/to/test2
21# ../dir/to/skip/
22#
23# __DEPARSE_SKIPS__
24# ../path/to/test3
25# ../path/to/test4
26#
27# # This is a comment
28# ../path/to/test5 # More comments at end of line
29#
30# # Blank lines okay
31
32__DEPARSE_FAILURES__
33
f19f3753
DM
34base/lex.t # checks regexp stringification
35comp/final_line_num.t # tests syntax error after BEGIN block
36comp/fold.t # mutability of folded constants
37comp/parser.t # crazy #line directives ==> shell syntax errors
09d973d9
DM
38mro/basic_01_c3_utf8.t
39mro/basic_01_dfs_utf8.t
40mro/complex_c3_utf8.t
f19f3753
DM
41mro/isarev.t
42mro/isarev_utf8.t
43op/attrhand.t # Custom attrs ignored; also AH provides none
44op/caller.t
f19f3753
DM
45op/goto.t
46op/gv.t # glob copy constants
09d973d9 47op/hexfp.t
f19f3753
DM
48op/index.t
49op/join.t # mutability of folded constants
50op/length.t # utf8ness of deparsed strings
51op/lexsub.t
52op/local.t
09d973d9 53op/lvref.t
f19f3753
DM
54op/not.t
55op/overload_integer.t
56op/override.t
57op/pack.t
58op/postfixderef.t
59op/range.t
60op/readline.t
61op/srand.t
62op/sub_lval.t
63op/sub.t
64op/switch.t
65op/symbolcache.t
66op/taint.t
67op/vec.t
68op/warn.t
69op/write.t
70porting/globvar.t
71re/overload.t # [perl #123385] %^H output
72re/pat_advanced.t # [perl #123417]
73re/pat_rt_report.t # malformed utf8 constant; also /\c@/ -> /\c\@/
74re/pat.t # [perl #90590]
f19f3753
DM
75re/regex_sets.t
76re/reg_fold.t # [perl #123385] %^H output
77re/rxcode.t # checks regexp stringification
78re/subst.t
79run/switchd-78586.t # -I on #! line is not deparsed
80run/switchI.t # -I on #! line is not deparsed
81uni/attrs.t
82uni/bless.t
83uni/gv.t
84uni/labels.t
85uni/lex_utf8.t
86uni/method.t
87uni/package.t
88uni/parser.t
89uni/readline.t
90uni/select.t
91uni/stash.t
92uni/tie.t
93uni/universal.t
09d973d9
DM
94uni/variables.t
95../cpan/Archive-Tar/t/03_file.t # constant sub ref: FOO->()
e936ab2f
DM
96
97# Most autodie tests currently fail under Deparse because
98# the %^H initialisation values are stringifed refs rather
99# than real refs.
2722144b 100../cpan/autodie/t/autodie.t
09d973d9
DM
101../cpan/autodie/t/basic_exceptions.t
102../cpan/autodie/t/binmode.t
2722144b
MH
103../cpan/autodie/t/blog_hints.t
104../cpan/autodie/t/caller.t
105../cpan/autodie/t/chmod.t
106../cpan/autodie/t/chown.t
2722144b 107../cpan/autodie/t/context_lexical.t
f19f3753 108../cpan/autodie/t/context.t
2722144b
MH
109../cpan/autodie/t/crickey.t
110../cpan/autodie/t/dbmopen.t
111../cpan/autodie/t/eval_error.t
112../cpan/autodie/t/exception_class.t
e936ab2f 113../cpan/autodie/t/exception_nonref.t
2722144b
MH
114../cpan/autodie/t/exceptions.t
115../cpan/autodie/t/exec.t
116../cpan/autodie/t/filehandles.t
09d973d9 117../cpan/autodie/t/fileno.t
2722144b
MH
118../cpan/autodie/t/hints_insist.t
119../cpan/autodie/t/hints_pod_examples.t
120../cpan/autodie/t/hints_provider_does.t
121../cpan/autodie/t/hints_provider_easy_does_it.t
122../cpan/autodie/t/hints_provider_isa.t
f19f3753
DM
123../cpan/autodie/t/hints.t
124../cpan/autodie/t/internal.t
2722144b
MH
125../cpan/autodie/t/kill.t
126../cpan/autodie/t/lethal.t
09d973d9 127../cpan/autodie/t/mkdir.t
8672d155 128../cpan/autodie/t/no-default.t
2722144b 129../cpan/autodie/t/open.t
09d973d9 130../cpan/autodie/t/read.t
2722144b
MH
131../cpan/autodie/t/recv.t
132../cpan/autodie/t/repeat.t
133../cpan/autodie/t/scope_leak.t
134../cpan/autodie/t/sysopen.t
09d973d9
DM
135../cpan/autodie/t/truncate.t
136../cpan/autodie/t/unlink.t
2722144b
MH
137../cpan/autodie/t/user-context.t
138../cpan/autodie/t/usersub.t
139../cpan/autodie/t/utf8_open.t
140../cpan/autodie/t/utime.t
141../cpan/autodie/t/version_tag.t
e936ab2f 142
f19f3753 143../cpan/AutoLoader/t/01AutoLoader.t
629541b4
DM
144../cpan/bignum/t/big_e_pi.t
145../cpan/bignum/t/bigexp.t
146../cpan/bignum/t/bigint.t
147../cpan/bignum/t/bignum.t
148../cpan/bignum/t/bigrat.t
149../cpan/bignum/t/bii_e_pi.t
09d973d9 150../cpan/bignum/t/biinfnan.t
629541b4 151../cpan/bignum/t/bir_e_pi.t
09d973d9
DM
152../cpan/bignum/t/bninfnan.t
153../cpan/bignum/t/brinfnan.t
629541b4
DM
154../cpan/bignum/t/in_effect.t
155../cpan/bignum/t/option_a.t
156../cpan/bignum/t/option_l.t
157../cpan/bignum/t/option_p.t
158../cpan/bignum/t/overrides.t
159../cpan/bignum/t/ratopt_a.t
160../cpan/bignum/t/scope_f.t
161../cpan/bignum/t/scope_i.t
162../cpan/bignum/t/scope_r.t
fda84d6f
DM
163
164# This one does a plan('skip_all') in a BEGIN block, which stops the rest
165# of the test file from being compiled
166../cpan/ExtUtils-MakeMaker/t/MM_VMS.t
167
629541b4
DM
168../cpan/Math-BigInt/t/constant.t
169../cpan/Math-BigInt/t/const_mbf.t
09d973d9 170../cpan/Scalar-List-Utils/t/uniq.t
09d973d9 171../cpan/Term-Cap/test.pl
629541b4
DM
172../cpan/Test-Simple/t/Legacy/Builder/carp.t
173../cpan/Test-Simple/t/Legacy/fail-more.t
174../cpan/Test-Simple/t/Legacy/is_deeply_fail.t
b2e509fd 175../cpan/Test-Simple/t/Legacy/no_plan.t # hard-coded line numbers
629541b4
DM
176../cpan/Test-Simple/t/Legacy/plan_bad.t
177../cpan/Test-Simple/t/Legacy/plan.t
178../cpan/Test-Simple/t/Legacy/subtest/line_numbers.t
179../cpan/Test-Simple/t/Legacy/subtest/predicate.t
09d973d9
DM
180../cpan/Test-Simple/t/regression/684-nested_todo_diag.t
181../cpan/Test-Simple/t/Test2/behavior/run_subtest_inherit.t
2722144b
MH
182../dist/Attribute-Handlers/t/constants.t
183../dist/Attribute-Handlers/t/data_convert.t
184../dist/Attribute-Handlers/t/linerep.t
185../dist/Attribute-Handlers/t/multi.t
f19f3753 186../dist/Carp/t/Carp.t
2722144b 187../dist/constant/t/constant.t
f19f3753 188../dist/Data-Dumper/t/dumper.t
09d973d9 189../dist/Data-Dumper/t/trailing_comma.t
f19f3753
DM
190../dist/Exporter/t/Exporter.t
191../dist/Filter-Simple/t/data.t
f19f3753 192../dist/Storable/t/croak.t
09d973d9 193../dist/threads/t/blocks.t
2722144b
MH
194../ext/B/t/b.t
195../ext/B/t/optree_constants.t
196../ext/B/t/optree_samples.t
2722144b 197../ext/Devel-Peek/t/Peek.t
2722144b
MH
198../ext/IPC-Open3/t/IPC-Open2.t
199../ext/IPC-Open3/t/IPC-Open3.t
2722144b 200../ext/XS-APItest/t/autoload.t
2722144b
MH
201../ext/XS-APItest/t/blockhooks.t
202../ext/XS-APItest/t/call_checker.t
2722144b 203../ext/XS-APItest/t/cleanup.t
2722144b 204../ext/XS-APItest/t/fetch_pad_names.t
2722144b 205../ext/XS-APItest/t/svpeek.t
09d973d9 206../ext/XS-APItest/t/synthetic_scope.t
51193e43 207../lib/Config.t # Config_heavy.pl fns getting output
2722144b 208../lib/charnames.t
09d973d9 209../lib/dumpvar.t
f19f3753 210../lib/English.t
2722144b 211../lib/overload.t
2722144b 212
09d973d9 213
2722144b
MH
214__DEPARSE_SKIPS__
215
216op/smartkve.t # Gobbles up all memory...
217comp/redef.t # Redefinition happens at compile time
2722144b 218../lib/locale.t # Memory...