added ARM64 hang test

This commit is contained in:
jndok
2016-06-15 19:18:51 +02:00
parent 40ac55cf74
commit c6db9febe7
2 changed files with 61 additions and 1 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_hookcounts test_hang
.PHONY: all
all: ${ALL_TESTS}
@ -35,6 +35,7 @@ test: ${ALL_TESTS}
./test_pc_change
./test_x86_soft_paging
./test_hookcounts
./test_hang
test_sanity: test_sanity.c
test_x86: test_x86.c
@ -46,6 +47,7 @@ test_multihook: test_multihook.c
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
${ALL_TESTS}:
${CC} ${CFLAGS} -o $@ $^