Ejemplo n.º 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
Ejemplo n.º 2
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
Ejemplo n.º 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()
Ejemplo n.º 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()