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