Skip to content

Commit

Permalink
bug fix + some tree eval action
Browse files Browse the repository at this point in the history
git-svn-id: https://slps.svn.sourceforge.net/svnroot/slps@237 ab42f6e0-554d-0410-b580-99e487e6eeb2
  • Loading branch information
grammarware committed Sep 5, 2008
1 parent 9ce0564 commit ae6b8fc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion topics/convergence/lci/lci.py
Expand Up @@ -14,6 +14,7 @@
tester = {}
extractor = {}
treeextractor = {}
treeevaluator = {}
targets = {}
parser = {}
evaluator = {}
Expand Down Expand Up @@ -452,6 +453,9 @@ def convergetestset():
for testcase in glob.glob(testset+'/*.'+branch[0]+'.btf'):
chainXBTF(testcase,branch[1:],t)
diffBTFs(t)
final = ordertargets()[-1]
for evaluator in treeevaluator.keys():
pass

def runtestset():
for testset in testsets.keys():
Expand All @@ -462,7 +466,7 @@ def runtestset():
if testset in tester[program]:
run = parser[program]+' '+testcase
logwrite(run)
results[program]=os.system(run+shutup)
results[program]=os.system(run+shutup)
print 'Test case',testcase,
if results.values()==[0]*len(results):
print 'passed parsing'
Expand Down

0 comments on commit ae6b8fc

Please sign in to comment.