]> git.saurik.com Git - apple/objc4.git/blob - test/timeout.pl
objc4-781.tar.gz
[apple/objc4.git] / test / timeout.pl
1 #!/usr/bin/perl -w
2
3 use strict;
4
5 my $usage = "timeout <seconds> <command ...>\n";
6 my $timeout = shift || die $usage;
7 alarm($timeout);
8 exec @ARGV;
9 die "exec failed: @ARGV";