mirror of
https://github.com/LCPQ/quantum_package
synced 2024-12-23 12:56:14 +01:00
Remove run_test.py
This commit is contained in:
parent
d2fdcff2b4
commit
5e841bcf5c
@ -1,93 +0,0 @@
|
|||||||
#!/usr/bin/python
|
|
||||||
|
|
||||||
import sys,os
|
|
||||||
import subprocess
|
|
||||||
|
|
||||||
DEBUG=False
|
|
||||||
|
|
||||||
|
|
||||||
def run_test(test_name,inp):
|
|
||||||
command = './'+test_name+" ${QPACKAGE_ROOT}/data/inputs/"+inp
|
|
||||||
try:
|
|
||||||
result = subprocess.check_output(command, shell=True)
|
|
||||||
except:
|
|
||||||
result = sys.exc_info()[0]
|
|
||||||
return result
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
|
|
||||||
import unittest
|
|
||||||
from math import *
|
|
||||||
|
|
||||||
from multiprocessing import Pool
|
|
||||||
env = os.environ
|
|
||||||
|
|
||||||
verbosity = 1
|
|
||||||
if os.environ["OMP_NUM_THREADS"]=="1":
|
|
||||||
try:
|
|
||||||
nproc = int(subprocess.check_output("cat /proc/cpuinfo | grep processor | wc -l", shell=True))
|
|
||||||
except:
|
|
||||||
nproc=4
|
|
||||||
else:
|
|
||||||
nproc=1
|
|
||||||
|
|
||||||
testfiles = []
|
|
||||||
for f in os.listdir(os.getcwd()):
|
|
||||||
if f.endswith('.irp.f'):
|
|
||||||
testfiles.append(f.replace('.irp.f',''))
|
|
||||||
|
|
||||||
# start worker processes
|
|
||||||
pool = Pool(processes=nproc)
|
|
||||||
|
|
||||||
template = """
|
|
||||||
class $test(unittest.TestCase):
|
|
||||||
|
|
||||||
default_precision = 10
|
|
||||||
|
|
||||||
execfile('$test.ref')
|
|
||||||
|
|
||||||
name = '$test'
|
|
||||||
tasks = {}
|
|
||||||
|
|
||||||
def setUp(self):
|
|
||||||
if DEBUG: return
|
|
||||||
for d in self.data.keys():
|
|
||||||
if d not in self.tasks:
|
|
||||||
self.tasks[d] = pool.apply_async(run_test, [self.name, d])
|
|
||||||
|
|
||||||
def _test_input(self,inp):
|
|
||||||
if DEBUG:
|
|
||||||
output = run_test(self.name,inp)
|
|
||||||
else:
|
|
||||||
output = self.tasks[inp].get()
|
|
||||||
for line in output.splitlines():
|
|
||||||
buffer = line.split(':')
|
|
||||||
if len(buffer) == 1:
|
|
||||||
continue
|
|
||||||
l,r = buffer
|
|
||||||
l,r = l.strip(), eval(r)
|
|
||||||
if 'precision' in self.__dict__:
|
|
||||||
precision = self.precision[l]
|
|
||||||
else:
|
|
||||||
precision = self.default_precision
|
|
||||||
if type(r) == float:
|
|
||||||
self.assertAlmostEqual(self.data[inp][l], r,
|
|
||||||
places=precision, msg=None)
|
|
||||||
#places=abs(int(log10(precision*max(abs(self.data[inp][l]),1.e-12)))), msg=None)
|
|
||||||
else:
|
|
||||||
self.assertEqual(self.data[inp][l], r, msg=None)
|
|
||||||
|
|
||||||
|
|
||||||
t = "def test_$k(self): self._test_input('$i')"
|
|
||||||
for i in data.keys():
|
|
||||||
k = i
|
|
||||||
k = k.replace('.ezfio','')
|
|
||||||
k = k.replace('-','_m_')
|
|
||||||
k = k.replace('+','_p_')
|
|
||||||
exec t.replace('$i',i).replace('$k',k) in locals()
|
|
||||||
"""
|
|
||||||
|
|
||||||
for test in testfiles:
|
|
||||||
exec template.replace('$test',test) in locals()
|
|
||||||
|
|
||||||
unittest.main(verbosity=verbosity)
|
|
Loading…
Reference in New Issue
Block a user