Blame t/exiter.pl

Packit 164714
#!/usr/bin/perl -w
Packit 164714
use strict;
Packit 164714
use warnings;
Packit 164714
Packit 164714
# This program always exits with the value supplied.  Perfect
Packit 164714
# for testing.  ;)
Packit 164714
Packit 164714
my $exit_value = shift(@ARGV) || 0;
Packit 164714
Packit 164714
exit($exit_value);