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
|
|
|
|
2015-09-21 12:35:59 +00:00
|
|
|
ALL_TESTS = test_sanity 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:
|
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-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
|
|
|
|
|
|
|
|
${ALL_TESTS}:
|
2015-09-04 01:52:41 +00:00
|
|
|
gcc ${CFLAGS} -o $@ $^
|
2015-09-07 19:05:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
|