1#!./perl -w 2 3no strict; 4 5BEGIN { 6 if ($ENV{PERL_CORE}) { 7 @INC = '../lib'; 8 chdir 't'; 9 } 10} 11 12use Getopt::Long qw(:config no_ignore_case); 13my $want_version="2.24"; 14die("Getopt::Long version $want_version required--this is only version ". 15 $Getopt::Long::VERSION) 16 unless $Getopt::Long::VERSION ge $want_version; 17 18print "1..9\n"; 19 20@ARGV = qw(-Foo -baR --foo bar); 21undef $opt_baR; 22undef $opt_bar; 23print (GetOptions("foo", "Foo=s") ? "" : "not ", "ok 1\n"); 24print ((defined $opt_foo) ? "" : "not ", "ok 2\n"); 25print (($opt_foo == 1) ? "" : "not ", "ok 3\n"); 26print ((defined $opt_Foo) ? "" : "not ", "ok 4\n"); 27print (($opt_Foo eq "-baR") ? "" : "not ", "ok 5\n"); 28print ((@ARGV == 1) ? "" : "not ", "ok 6\n"); 29print (($ARGV[0] eq "bar") ? "" : "not ", "ok 7\n"); 30print (!(defined $opt_baR) ? "" : "not ", "ok 8\n"); 31print (!(defined $opt_bar) ? "" : "not ", "ok 9\n"); 32