]> git.saurik.com Git - apple/dyld.git/blob - unit-tests/bin/pass-iff-exit-zero.pl
dyld-655.1.tar.gz
[apple/dyld.git] / unit-tests / bin / pass-iff-exit-zero.pl
1 #!/usr/bin/perl -w
2
3 #
4 # Usage:
5 #
6 # ${PASS_IFF} command
7 #
8
9 use strict;
10
11 my $test_name = "";
12 if ( exists $ENV{UNIT_TEST_NAME} ) {
13 $test_name = $ENV{UNIT_TEST_NAME};
14 }
15
16 if(0 != system(@ARGV))
17 {
18 printf("FAIL $test_name\n");
19 exit 1;
20 }
21
22 printf("PASS $test_name\n");
23 exit 0;