unicorn/test/unit/Makefile

34 lines
592 B
Makefile
Raw Normal View History

2015-09-04 01:52:41 +00:00
2015-09-07 19:05:55 +00:00
CFLAGS += -L ../../
CFLAGS += -lcmocka -lunicorn
CFLAGS += -I ../../include
2015-09-04 01:52:41 +00:00
2015-09-07 19:05:55 +00:00
ALL_TESTS = test_x86 test_mem_map
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:
rm ${ALL_TESTS}
2015-09-07 19:05:55 +00:00
.PHONY: test
test: export LD_LIBRARY_PATH=../../
test: ${ALL_TESTS}
@#echo ${ALL_TESTS} | xargs -n1 | xargs -I CMD sh -c ./CMD
@for test in ${ALL_TESTS}; do \
echo -e "\n--------------------------------------------------------------------------------"; \
echo "TEST: $$test"; \
./$$test || break; \
done
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
${ALL_TESTS}:
2015-09-04 01:52:41 +00:00
gcc ${CFLAGS} -o $@ $^
2015-09-07 19:05:55 +00:00