]> git.saurik.com Git - apple/ld64.git/blame - unit-tests/bin/fail-if-stdin.pl
ld64-47.2.tar.gz
[apple/ld64.git] / unit-tests / bin / fail-if-stdin.pl
CommitLineData
d696c285
A
1#!/usr/bin/perl -w
2
3#
4# Usage:
5#
6# command | ${FAIL_IF_STDIN}
7#
8
9use strict;
10
11my $test_name = "";
12if ( exists $ENV{UNIT_TEST_NAME} ) {
13 $test_name = $ENV{UNIT_TEST_NAME};
14}
15
16if( eof STDIN )
17{
18
19}
20else
21{
22 printf("FAIL $test_name\n");
23}
24exit 0;