unicorn/tests/unit/Makefile

46 lines
1.1 KiB
Makefile
Raw Normal View History

2015-09-07 22:07:48 +02:00
CFLAGS += -Wall -Werror -Wno-unused-function -g
CFLAGS += -L ../../ -I ../../include
CFLAGS += -L ../../cmocka/src -I ../../cmocka/include
LDLIBS += -lcmocka -lunicorn
2015-09-04 03:52:41 +02:00
2016-12-26 07:16:56 +01:00
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S), Linux)
LDLIBS += -lrt
endif
EXECUTE_VARS = LD_LIBRARY_PATH=../../cmocka/src:../../ DYLD_LIBRARY_PATH=../../
2016-08-21 03:47:45 +02: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
ALL_TESTS_SOURCES = $(wildcard *.c)
ALL_TESTS = $(ALL_TESTS_SOURCES:%.c=%)
2015-09-04 03:52:41 +02:00
2015-09-07 21:05:55 +02:00
.PHONY: all
2015-09-04 03:52:41 +02:00
all: ${ALL_TESTS}
2015-09-07 21:05:55 +02:00
.PHONY: clean
2015-09-04 03:52:41 +02:00
clean:
rm -rf ${ALL_TESTS}
2015-09-04 03:52:41 +02:00
2015-09-07 21:05:55 +02:00
.PHONY: test
test: ${ALL_TESTS}
${EXECUTE_VARS} ./test_sanity
${EXECUTE_VARS} ./test_x86
${EXECUTE_VARS} ./test_mem_map
${EXECUTE_VARS} ./test_mem_map_ptr
${EXECUTE_VARS} ./test_mem_high
${EXECUTE_VARS} ./test_multihook
${EXECUTE_VARS} ./test_pc_change
${EXECUTE_VARS} ./test_hookcounts
echo "skipping test_tb_x86"
echo "skipping test_x86_soft_paging"
echo "skipping test_hang"
echo "skipping test_x86_sh1_enter_leave"
echo "skipping test_x86_rip_bug"