This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add test for File::stat.
[perl5.git] / t / lib / gol-compat.t
1 #!./perl -w
2
3 BEGIN {
4     chdir('t') if -d 't';
5     @INC = '../lib';
6 }
7
8 require "newgetopt.pl";
9
10 print "1..9\n";
11
12 @ARGV = qw(-Foo -baR --foo bar);
13 $newgetopt::ignorecase = 0;
14 $newgetopt::ignorecase = 0;
15 undef $opt_baR;
16 undef $opt_bar;
17 print "ok 1\n" if NGetOpt ("foo", "Foo=s");
18 print ((defined $opt_foo)   ? "" : "not ", "ok 2\n");
19 print (($opt_foo == 1)      ? "" : "not ", "ok 3\n");
20 print ((defined $opt_Foo)   ? "" : "not ", "ok 4\n");
21 print (($opt_Foo eq "-baR") ? "" : "not ", "ok 5\n");
22 print ((@ARGV == 1)         ? "" : "not ", "ok 6\n");
23 print (($ARGV[0] eq "bar")  ? "" : "not ", "ok 7\n");
24 print (!(defined $opt_baR)  ? "" : "not ", "ok 8\n");
25 print (!(defined $opt_bar)  ? "" : "not ", "ok 9\n");