BEGIN: {
chdir 't' if -d 't';
@INC = ('../lib');
+ require './test.pl';
}
# supress VMS whinging about bad execs.
$ENV{LC_ALL} = 'C'; # Forge English error messages.
$ENV{LANGUAGE} = 'C'; # Ditto in GNU.
-require './test.pl';
-plan(tests => 12);
+plan(tests => 14);
+
+my $Perl = which_perl();
my $exit;
SKIP: {
skip("bug/feature of pdksh", 2) if $^O eq 'os2';
- $exit = system qq{$^X -le "print q{ok 1 - interpreted system(EXPR)"}};
+ $exit = system qq{$Perl -le "print q{ok 1 - interpreted system(EXPR)"}};
next_test();
is( $exit, 0, ' exited 0' );
}
-$exit = system qq{$^X -le "print q{ok 3 - split & direct call system(EXPR)"}};
+$exit = system qq{$Perl -le "print q{ok 3 - split & direct call system(EXPR)"}};
next_test();
is( $exit, 0, ' exited 0' );
# On VMS you need the quotes around the program or it won't work.
# On Unix its the opposite.
my $quote = $^O eq 'VMS' ? '"' : '';
-$exit = system $^X, '-le',
+$exit = system $Perl, '-le',
"${quote}print q{ok 5 - system(PROG, LIST)}${quote}";
next_test();
is( $exit, 0, ' exited 0' );
-is( system(qq{$^X -e "exit 0"}), 0, 'Explicit exit of 0' );
+is( system(qq{$Perl -e "exit 0"}), 0, 'Explicit exit of 0' );
my $exit_one = $^O eq 'VMS' ? 4 << 8 : 1 << 8;
-is( system(qq{$^X "-I../lib" -e "use vmsish qw(hushed); exit 1"}), $exit_one,
+is( system(qq{$Perl "-I../lib" -e "use vmsish qw(hushed); exit 1"}), $exit_one,
'Explicit exit of 1' );
printf "# \$! eq %d, '%s'\n", $!, $!;
}
+
+is( `$Perl -le "print 'ok'"`, "ok\n", 'basic ``' );
+is( <<`END`, "ok\n", '<<`HEREDOC`' );
+$Perl -le "print 'ok'"
+END
+
+
TODO: {
if( $^O =~ /Win32/ ) {
print "not ok 11 - exec failure doesn't terminate process # TODO Win32 exec failure waits for user input\n";
"exec failure doesn't terminate process");
}
-exec $^X, '-le', qq{${quote}print 'ok 12 - exec PROG, LIST'${quote}};
+my $test = curr_test();
+exec $Perl, '-le', qq{${quote}print 'ok $test - exec PROG, LIST'${quote}};
fail("This should never be reached if the exec() worked");