2015-09-03 21:52:41 -04:00
|
|
|
|
2015-09-07 16:07:48 -04:00
|
|
|
CFLAGS += -Wall -Werror -Wno-unused-function -g
|
2015-09-07 15:05:55 -04:00
|
|
|
CFLAGS += -L ../../
|
|
|
|
|
CFLAGS += -lcmocka -lunicorn
|
|
|
|
|
CFLAGS += -I ../../include
|
2015-09-03 21:52:41 -04:00
|
|
|
|
2016-04-20 15:38:27 -07:00
|
|
|
ifeq ($(UNICORN_ASAN),yes)
|
|
|
|
|
CC = clang -fsanitize=address -fno-omit-frame-pointer
|
|
|
|
|
CXX = clang++ -fsanitize=address -fno-omit-frame-pointer
|
|
|
|
|
AR = llvm-ar
|
|
|
|
|
LDFLAGS := -fsanitize=address ${LDFLAGS}
|
|
|
|
|
endif
|
|
|
|
|
|
2016-01-16 18:05:32 -05:00
|
|
|
ALL_TESTS = test_sanity test_x86 test_mem_map test_mem_high test_mem_map_ptr \
|
2015-10-03 22:46:25 -07:00
|
|
|
test_tb_x86 test_multihook test_pc_change test_x86_soft_paging \
|
2016-07-31 03:19:52 +02:00
|
|
|
test_hookcounts test_hang test_x86_shl_enter_leave
|
2015-09-03 21:52:41 -04:00
|
|
|
|
2015-09-07 15:05:55 -04:00
|
|
|
.PHONY: all
|
2015-09-03 21:52:41 -04:00
|
|
|
all: ${ALL_TESTS}
|
|
|
|
|
|
2015-09-07 15:05:55 -04:00
|
|
|
.PHONY: clean
|
2015-09-03 21:52:41 -04:00
|
|
|
clean:
|
2015-09-24 14:18:02 +08:00
|
|
|
rm -rf ${ALL_TESTS}
|
2015-09-03 21:52:41 -04:00
|
|
|
|
2015-09-07 15:05:55 -04:00
|
|
|
.PHONY: test
|
|
|
|
|
test: export LD_LIBRARY_PATH=../../
|
|
|
|
|
test: ${ALL_TESTS}
|
2015-09-21 08:35:59 -04:00
|
|
|
./test_sanity
|
2015-09-07 16:07:48 -04:00
|
|
|
./test_x86
|
|
|
|
|
./test_mem_map
|
2015-12-24 09:51:17 +08:00
|
|
|
./test_mem_map_ptr
|
|
|
|
|
./test_mem_high
|
2016-01-16 18:05:32 -05:00
|
|
|
./test_tb_x86
|
2016-01-21 20:58:21 -08:00
|
|
|
./test_multihook
|
2016-01-28 14:06:17 +08:00
|
|
|
./test_pc_change
|
2016-02-22 00:03:14 -05:00
|
|
|
./test_x86_soft_paging
|
2015-10-03 22:46:25 -07:00
|
|
|
./test_hookcounts
|
2016-06-15 19:18:51 +02:00
|
|
|
./test_hang
|
2016-07-31 03:19:52 +02:00
|
|
|
./test_x86_shl_enter_leave
|
2015-09-07 15:05:55 -04:00
|
|
|
|
2015-09-21 08:35:59 -04:00
|
|
|
test_sanity: test_sanity.c
|
2015-09-03 21:52:41 -04:00
|
|
|
test_x86: test_x86.c
|
2015-09-07 15:05:55 -04:00
|
|
|
test_mem_map: test_mem_map.c
|
2015-11-27 17:25:53 -08:00
|
|
|
test_mem_map_ptr: test_mem_map_ptr.c
|
2015-12-08 18:23:06 +01:00
|
|
|
test_mem_high: test_mem_high.c
|
2016-01-16 18:05:32 -05:00
|
|
|
test_tb_x86: test_tb_x86.c
|
2016-01-21 20:58:21 -08:00
|
|
|
test_multihook: test_multihook.c
|
2016-01-28 14:06:17 +08:00
|
|
|
test_pc_change: test_pc_change.c
|
2016-02-22 00:03:14 -05:00
|
|
|
test_x86_soft_paging: test_x86_soft_paging.c
|
2015-10-03 22:46:25 -07:00
|
|
|
test_hookcounts: test_hookcounts.c
|
2016-06-15 19:18:51 +02:00
|
|
|
test_hang: test_hang.c
|
2016-07-31 03:19:52 +02:00
|
|
|
test_x86_shl_enter_leave: test_x86_shl_enter_leave.c
|
2015-09-07 15:05:55 -04:00
|
|
|
|
|
|
|
|
${ALL_TESTS}:
|
2015-12-30 08:50:58 +08:00
|
|
|
${CC} ${CFLAGS} -o $@ $^
|