#!/usr/bin/perl
$| = 1;

if (-f "always_fail_2" ) {
   exit 0;
} else {
   exit 34;
}
