[test suite] minor bug fix for file existence check

This commit is contained in:
Michael Rash
2012-07-27 18:08:23 -04:00
parent d0cb2c6ad5
commit a6ea3f6935
+1 -1
View File
@@ -3029,7 +3029,7 @@ sub init() {
for my $file (glob("$output_dir/*.test"), "$output_dir/init",
$tmp_rc_file, $logfile, $key_gen_file) {
next unless -d $file;
next unless -e $file;
unlink $file or die "[*] Could not unlink($file)";
}