# this test tests that the output (text output and return code) of # test scripts are correct. use v6; use Test; plan 1; skip_rest("skipping because redirection is not portable"); exit; # this test tests that various failure conditions (that we don't want # to show up as failures) happen, and test the the output of the test # suite is correct. # ... copied from t/run/05-unknown-option.t, but it looks wrong :) sub nonce () { return (".$*PID." ~ int rand 1000) } my $out_fn = "temp-ex-output" ~ nonce; my $redir_pre = "2>&1 >"; my $redir_post = "2>&1"; if $*OS eq any { $redir_pre = ">"; $redir_post = ""; }; my $file = $?FILE; $file ~~ s:P5/output.t/script.pl/; my $cmd = "$*EXECUTABLE_NAME $file $redir_pre $out_fn $redir_post"; %*ENV = 0; diag($cmd); system($cmd); my $output = slurp $out_fn; unlink($out_fn); is($output, "1..1 ok 1 - TODO that passes # TODO # Looks like 1 tests of 1 passed unexpectedly ", "got correct output");