Lines Matching refs:file
152 foreach $file (@FILES) {
153 $dir = $file;
154 if ($file !~ /\//) {
160 open(FILE, "<" . $file) ||
161 usage("Unable to open test vector information file '$file' for reading: $!\n");
162 $vec = { desc => "", file => "", sha256 => "", sha384 => "", sha512 => "" };
174 $vec->{file} = $data;
191 "file format at line $line of file '$file'\n");
199 "format at line $line of file '$file'\n");
206 $vec->{file} = $data;
215 "format. Missing required fields in file '$file'\n");
221 "format. Missing required DESCRIPTION field in file '$file'\n");
223 if (!$vec->{file}) {
225 "format. Missing required FILE field in file '$file'\n");
227 if (! -f $vec->{file}) {
230 "file '$file'.\n");
235 "field specified in file '$file'.\n");
239 "format. The SHA256 field is invalid in file '$file'.\n");
243 "format. The SHA384 field is invalid in file '$file'.\n");
247 "format. The SHA512 field is invalid in file '$file'.\n");