Reorganize test directories

This commit is contained in:
danghvu 2015-09-21 20:47:45 -05:00
parent 0c67f41ed9
commit 3c1d65ea66
43 changed files with 2 additions and 2 deletions

View File

@ -251,7 +251,7 @@ endif
.PHONY: test
test: all
$(MAKE) -C test/unit test
$(MAKE) -C tests/unit test
install: all $(PKGCFGF)

View File

@ -19,7 +19,7 @@ class BxHang(regress.RegressTest):
uc.reg_write(UC_ARM_REG_LR, 0x1004)
uc.hook_add(UC_HOOK_BLOCK, hook_block)
print 'block should only run once'
uc.emu_start(0x1000, 0x1004, timeout=500)
uc.emu_start(0x1000, 0x1004)
self.assertEqual(uc.count, 1)