예제 #1
0
 def tearDown(self):
     import esbmc
     esbmc.kill_esbmc_process()
     self.ns, self.opts, self.funcs = None, None, None
     self.main = None
     self.eq = None
     self.art = None
예제 #2
0
파일: exstate.py 프로젝트: esbmc/esbmc
 def tearDown(self):
     import esbmc
     esbmc.kill_esbmc_process()
     self.ns, self.opts, self.funcs = None, None, None
     self.main = None
     self.eq = None
     self.art = None
예제 #3
0
 def test_args(self):
     import esbmc
     # Had a problem in the past with the arg list being reversed...
     ns, opts, po = esbmc.init_esbmc_process([
         './test_data/00_big_endian_01/main.c', '--timeout', '1m',
         '--memlimit', '1g'
     ])
     esbmc.kill_esbmc_process()
예제 #4
0
 def test_setup(self):
     import esbmc
     # Assumes cwd = python test dir
     ns, opts, po = esbmc.init_esbmc_process(
         ['./test_data/00_big_endian_01/main.c'])
     esbmc.kill_esbmc_process()