Hello Namshin,

As I mentioned in my last e-mail to pygr-dev, I've been working on further improvements to megatest code - and it is on this subject that I would like to ask you a question. Most of your original megatests contain the following bit of code in their set-up routines:

try:
    tmpFileName = os.path.join(testDir, 'DELETE_THIS_TEMP_FILE')
    open(tmpFileName, 'w').write('A' * 1024 * 1024)
except:
    raise IOError

What is its purpose? It can't be to allocate enough room for the tests to run because the fact our temporary files are much larger than a megabyte aside, the file doesn't get deleted until the end of the test run...

Cheers,
--
MS

--
You received this message because you are subscribed to the Google Groups 
"pygr-dev" group.
To post to this group, send email to pygr-...@googlegroups.com.
To unsubscribe from this group, send email to 
pygr-dev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/pygr-dev?hl=en.

Reply via email to