Lines Matching refs:fname
92 def check_out(name, fname, expect_arr) argument
96 rdata = File.open(fname)
284 def CommandOptions.set_rgdatafile(fname) argument
285 if not File.exists?(fname)
286 $stderr.printf "Error: Rgdata file '%s' does not exist\n", fname
288 elsif not File.readable?(fname)
289 $stderr.printf "Error: Rgdata file '%s' is not readable\n", fname
292 $rgdatafile = File.expand_path(fname)
296 def CommandOptions.set_testpgm(fname) argument
297 if not File.exists?(fname)
298 $stderr.printf "Error: Testpgm file '%s' does not exist\n", fname
300 elsif not File.executable?(fname)
301 $stderr.printf "Error: Testpgm file '%s' is not executable\n", fname
304 $testpgm = File.expand_path(fname)