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:
parent
478a6d110c
commit
7ce583405f
|
@ -136,11 +136,17 @@ class Test():
|
||||||
|
|
||||||
def copy_Reference2Current(self,files=[]):
|
def copy_Reference2Current(self,files=[]):
|
||||||
for file in 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=[]):
|
def copy_Current2Current(self,files=[]):
|
||||||
for file in 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):
|
def execute_inCurrentDir(self,cmd):
|
||||||
os.chdir(self.dirCurrent())
|
os.chdir(self.dirCurrent())
|
||||||
|
@ -164,7 +170,7 @@ class Test():
|
||||||
if curNaN == refNaN:
|
if curNaN == refNaN:
|
||||||
err[numpy.isnan(err)]=0.0
|
err[numpy.isnan(err)]=0.0
|
||||||
max_err = numpy.max(err)
|
max_err = numpy.max(err)
|
||||||
print '********\n * maximum relative error',max_err,'\n ********'
|
print ' ********\n * maximum relative error',max_err,'\n ********'
|
||||||
return max_err
|
return max_err
|
||||||
|
|
||||||
def report_Success(self,culprit):
|
def report_Success(self,culprit):
|
||||||
|
|
Loading…
Reference in New Issue