]> git.saurik.com Git - apple/objc4.git/blob - test/timeout.pl
750b21e9eb6c540ad55dd2431e41f6bf50189f5a
[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";