added tests with enter/leave

This commit is contained in:
samothtronicien
2016-07-31 03:19:52 +02:00
parent 1ecc5abdbc
commit ae8e34173a
2 changed files with 490 additions and 3 deletions

View File

@ -13,7 +13,7 @@ endif
ALL_TESTS = test_sanity test_x86 test_mem_map test_mem_high test_mem_map_ptr \
test_tb_x86 test_multihook test_pc_change test_x86_soft_paging \
test_hookcounts test_hang test_x86_shl
test_hookcounts test_hang test_x86_shl_enter_leave
.PHONY: all
all: ${ALL_TESTS}
@ -36,7 +36,7 @@ test: ${ALL_TESTS}
./test_x86_soft_paging
./test_hookcounts
./test_hang
./test_x86_shl
./test_x86_shl_enter_leave
test_sanity: test_sanity.c
test_x86: test_x86.c
@ -49,7 +49,7 @@ test_pc_change: test_pc_change.c
test_x86_soft_paging: test_x86_soft_paging.c
test_hookcounts: test_hookcounts.c
test_hang: test_hang.c
test_x86_shl: test_x86_shl.c
test_x86_shl_enter_leave: test_x86_shl_enter_leave.c
${ALL_TESTS}:
${CC} ${CFLAGS} -o $@ $^