This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add to known_pod_issues.dat following Test-Harness upgrade
[perl5.git] / t / porting / bincompat.t
CommitLineData
a552ba59
NC
1#!./perl -w
2use strict;
3require './test.pl';
4
5use Config;
6
7plan(2);
8
b8b46d9f 9# Defiantly a white box test...
a552ba59
NC
10
11# As we need to call it direct, we'll take advantage of its result ordering:
12my @to_check = qw(bincompat_options non_bincompat_options);
13my @V = map {s/^ //r} Internals::V();
14
15while (my ($index, $sub) = each @to_check) {
102bfa85 16 my $got = join ' ', sort &{Config->can($sub)}();
a552ba59
NC
17 is($got, $V[$index], "C source code has $sub in sorted order");
18}