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