Skip to content
Snippets Groups Projects
Commit b0c1012f authored by Magnus.Ersdal's avatar Magnus.Ersdal
Browse files

added new test

parent f7a02115
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*-
"""
Created on Mon Mar 26 23:43:04 2018
@author: Magnus Rentsch Ersdal (magnus.ersdal@uib.no)
"""
"""requires a pre-load of the commands in a variable called "li" SE"""
print("start!")
import svf_intepreter as interpreter
def space():
print("====================================================================")
def littlespace():
print("------")
starttime = time.time()
svf = interpreter.svfinterpreter()
space()
for test in li:
print("testing", test)
littlespace()
svf.caller(test)
space()
endtime = time.time()
dt = endtime - starttime
dtm = int(dt/60)
dts = dt - (dtm * 60)
print("operation completed in {a:d} minutes {b:f} seconds".format(a=dtm, b=dts))
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment