summaryrefslogtreecommitdiffstats
path: root/t/100-system.t
blob: 0be6006c94352edb7d8607ce8d0a13f2b5571113 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 4;
use IO::Pty::Easy;

my $pty = IO::Pty::Easy->new;
$pty->spawn("$^X -ple ''");
my $output;
eval {
    local $SIG{ALRM} = sub { die "alarm\n" };
    alarm 5;
    $output = `$^X -e 'print "foo"'`;
    alarm 0;
};
isnt($@, "alarm\n", "system() didn't time out");
is($output, "foo", "system() got the right value");
$pty->kill;
undef $output;
eval {
    local $SIG{ALRM} = sub { die "alarm2\n" };
    alarm 5;
    $output = `$^X -e 'print "bar"'`;
    alarm 0;
};
isnt($@, "alarm2\n", "system() didn't time out (after kill)");
is($output, "bar", "system() got the right value (after kill)");
$pty->close;