2015-09-04 01:52:41 +00:00
|
|
|
|
2015-09-07 20:07:48 +00:00
|
|
|
CFLAGS += -Wall -Werror -Wno-unused-function -g
|
2015-09-07 19:05:55 +00:00
|
|
|
CFLAGS += -L ../../
|
|
|
|
CFLAGS += -lcmocka -lunicorn
|
|
|
|
CFLAGS += -I ../../include
|
2015-09-04 01:52:41 +00:00
|
|
|
|
2016-04-20 22:38:27 +00: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 23:05:32 +00:00
|
|
|
ALL_TESTS = test_sanity test_x86 test_mem_map test_mem_high test_mem_map_ptr \
|
2015-10-04 05:46:25 +00:00
|
|
|
test_tb_x86 test_multihook test_pc_change test_x86_soft_paging \
|
2016-07-31 01:19:52 +00:00
|
|
|
test_hookcounts test_hang test_x86_shl_enter_leave
|
2015-09-04 01:52:41 +00:00
|
|
|
|
2015-09-07 19:05:55 +00:00
|
|
|
.PHONY: all
|
2015-09-04 01:52:41 +00:00
|
|
|
all: ${ALL_TESTS}
|
|
|
|
|
2015-09-07 19:05:55 +00:00
|
|
|
.PHONY: clean
|
2015-09-04 01:52:41 +00:00
|
|
|
clean:
|
2015-09-24 06:18:02 +00:00
|
|
|
rm -rf ${ALL_TESTS}
|
2015-09-04 01:52:41 +00:00
|
|
|
|
2015-09-07 19:05:55 +00:00
|
|
|
.PHONY: test
|
|
|
|
test: export LD_LIBRARY_PATH=../../
|
|
|
|
test: ${ALL_TESTS}
|
2015-09-21 12:35:59 +00:00
|
|
|
./test_sanity
|
2015-09-07 20:07:48 +00:00
|
|
|
./test_x86
|
|
|
|
./test_mem_map
|
2015-12-24 01:51:17 +00:00
|
|
|
./test_mem_map_ptr
|
|
|
|
./test_mem_high
|
2016-01-16 23:05:32 +00:00
|
|
|
./test_tb_x86
|
2016-01-22 04:58:21 +00:00
|
|
|
./test_multihook
|
2016-01-28 06:06:17 +00:00
|
|
|
./test_pc_change
|
2016-02-22 05:03:14 +00:00
|
|
|
./test_x86_soft_paging
|
2015-10-04 05:46:25 +00:00
|
|
|
./test_hookcounts
|
2016-06-15 17:18:51 +00:00
|
|
|
./test_hang
|
2016-07-31 01:19:52 +00:00
|
|
|
./test_x86_shl_enter_leave
|
2015-09-07 19:05:55 +00:00
|
|
|
|
2015-09-21 12:35:59 +00:00
|
|
|
test_sanity: test_sanity.c
|
2015-09-04 01:52:41 +00:00
|
|
|
test_x86: test_x86.c
|
2015-09-07 19:05:55 +00:00
|
|
|
test_mem_map: test_mem_map.c
|
2015-11-28 01:25:53 +00:00
|
|
|
test_mem_map_ptr: test_mem_map_ptr.c
|
2015-12-08 17:23:06 +00:00
|
|
|
test_mem_high: test_mem_high.c
|
2016-01-16 23:05:32 +00:00
|
|
|
test_tb_x86: test_tb_x86.c
|
2016-01-22 04:58:21 +00:00
|
|
|
test_multihook: test_multihook.c
|
2016-01-28 06:06:17 +00:00
|
|
|
test_pc_change: test_pc_change.c
|
2016-02-22 05:03:14 +00:00
|
|
|
test_x86_soft_paging: test_x86_soft_paging.c
|
2015-10-04 05:46:25 +00:00
|
|
|
test_hookcounts: test_hookcounts.c
|
2016-06-15 17:18:51 +00:00
|
|
|
test_hang: test_hang.c
|
2016-07-31 01:19:52 +00:00
|
|
|
test_x86_shl_enter_leave: test_x86_shl_enter_leave.c
|
2015-09-07 19:05:55 +00:00
|
|
|
|
|
|
|
${ALL_TESTS}:
|
2015-12-30 00:50:58 +00:00
|
|
|
${CC} ${CFLAGS} -o $@ $^
|