made copy_Current2Current and copy_Current2Current in testclass more verbose, added numerics with fixed seed to compile test to get always exactly the same results

This commit is contained in:
Martin Diehl 2012-02-23 17:44:09 +00:00
parent 478a6d110c
commit 7ce583405f
1 changed files with 9 additions and 3 deletions

View File

@ -136,11 +136,17 @@ class Test():
def copy_Reference2Current(self,files=[]):
for file in files:
shutil.copy2(self.fileInReference(file),self.fileInCurrent(file))
try:
shutil.copy2(self.fileInReference(file),self.fileInCurrent(file))
except:
print 'Unable to copy file ', file
def copy_Current2Current(self,files=[]):
for file in files:
shutil.copy2(self.fileInCurrent(file[0]),self.fileInCurrent(file[1]))
try:
shutil.copy2(self.fileInCurrent(file[0]),self.fileInCurrent(file[1]))
except:
print 'Unable to copy file ', file
def execute_inCurrentDir(self,cmd):
os.chdir(self.dirCurrent())
@ -164,7 +170,7 @@ class Test():
if curNaN == refNaN:
err[numpy.isnan(err)]=0.0
max_err = numpy.max(err)
print '********\n * maximum relative error',max_err,'\n ********'
print ' ********\n * maximum relative error',max_err,'\n ********'
return max_err
def report_Success(self,culprit):