This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Get t/uni/gv.t working under minitest
[perl5.git] / t / op / filetest_t.t
index cd552a7..eec67ec 100644 (file)
@@ -16,11 +16,11 @@ my($dev_tty, $dev_null) = qw(/dev/tty /dev/null);
 
 SKIP: {
     open(my $tty, "<", $dev_tty)
-       or skip("Can't open terminal '$dev_tty': $!");
+       or skip("Can't open terminal '$dev_tty': $!", 4);
     if ($^O eq 'VMS') {
         # TT might be a mailbox or other non-terminal device
         my $tt_dev = VMS::Filespec::vmspath('TT');
-        skip("'$tt_dev' is probably not a terminal") if $tt_dev !~ m/^_(tt|ft|rt)/i;
+        skip("'$tt_dev' is probably not a terminal", 4) if $tt_dev !~ m/^_(tt|ft|rt)/i;
     }
     ok(-t $tty, "'$dev_tty' is a TTY");
     ok(-t -e $tty, "'$dev_tty' is a TTY (with -t -e)");
@@ -31,7 +31,7 @@ SKIP: {
 }
 SKIP: {
     open(my $null, "<", $dev_null)
-       or skip("Can't open null device '$dev_null': $!");
+       or skip("Can't open null device '$dev_null': $!", 3);
     ok(!-t $null, "'$dev_null' is not a TTY");
     ok(!-t -e $null, "'$dev_null' is not a TTY (with -t -e)");
     ok(!-e -t $null, "'$dev_null' is not a TTY (with -e -t)");