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