mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-11 00:44:27 +00:00
removed flags for locally installed cpputest, build tests with make test
This commit is contained in:
parent
deb4578640
commit
8e8dfe94bf
@ -1,12 +1,10 @@
|
|||||||
CC = g++
|
CC = g++
|
||||||
|
|
||||||
# Requirements: http://www.cpputest.org/ should be placed in btstack/test
|
# Requirements: cpputest.github.io
|
||||||
|
|
||||||
BTSTACK_ROOT = ../..
|
BTSTACK_ROOT = ../..
|
||||||
CPPUTEST_HOME = ${BTSTACK_ROOT}/test/cpputest
|
|
||||||
|
|
||||||
CFLAGS = -g -Wall -I.. -I${BTSTACK_ROOT}/example/libusb -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/ble -I${BTSTACK_ROOT}/include -I$(CPPUTEST_HOME)/include
|
CFLAGS = -g -Wall -I.. -I${BTSTACK_ROOT}/example/libusb -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/ble -I${BTSTACK_ROOT}/include
|
||||||
# -L$(CPPUTEST_HOME)/lib
|
|
||||||
LDFLAGS += -lCppUTest -lCppUTestExt
|
LDFLAGS += -lCppUTest -lCppUTestExt
|
||||||
|
|
||||||
VPATH += ${BTSTACK_ROOT}/ble
|
VPATH += ${BTSTACK_ROOT}/ble
|
||||||
@ -24,7 +22,7 @@ all: att_db_util_test
|
|||||||
att_db_util_test: ${COMMON_OBJ} att_db_util_test.c
|
att_db_util_test: ${COMMON_OBJ} att_db_util_test.c
|
||||||
${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@
|
${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@
|
||||||
|
|
||||||
test:
|
test: all
|
||||||
./att_db_util_test
|
./att_db_util_test
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
CC = g++
|
CC = g++
|
||||||
|
|
||||||
# Requirements: http://www.cpputest.org/ should be placed in btstack/test
|
# Requirements: cpputest.github.io
|
||||||
|
|
||||||
BTSTACK_ROOT = ../..
|
BTSTACK_ROOT = ../..
|
||||||
CPPUTEST_HOME = ${BTSTACK_ROOT}/test/cpputest
|
|
||||||
|
|
||||||
CFLAGS = -g -Wall -I.. -I${BTSTACK_ROOT}/example/libusb -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/ble -I${BTSTACK_ROOT}/include -I$(CPPUTEST_HOME)/include
|
CFLAGS = -g -Wall -I.. -I${BTSTACK_ROOT}/example/libusb -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/ble -I${BTSTACK_ROOT}/include
|
||||||
LDFLAGS += -L$(CPPUTEST_HOME)/lib -lCppUTest -lCppUTestExt
|
LDFLAGS += -L$(CPPUTEST_HOME)/lib -lCppUTest -lCppUTestExt
|
||||||
|
|
||||||
VPATH += ${BTSTACK_ROOT}/ble
|
VPATH += ${BTSTACK_ROOT}/ble
|
||||||
@ -33,7 +32,7 @@ all: ad_parser
|
|||||||
ad_parser: ${CORE_OBJ} ${COMMON_OBJ} advertising_data_parser.c
|
ad_parser: ${CORE_OBJ} ${COMMON_OBJ} advertising_data_parser.c
|
||||||
${CC} ${CORE_OBJ} ${COMMON_OBJ} advertising_data_parser.c ${CFLAGS} ${LDFLAGS} -o $@
|
${CC} ${CORE_OBJ} ${COMMON_OBJ} advertising_data_parser.c ${CFLAGS} ${LDFLAGS} -o $@
|
||||||
|
|
||||||
test:
|
test: all
|
||||||
./ad_parser
|
./ad_parser
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
CC = g++
|
CC = g++
|
||||||
|
|
||||||
# Requirements: http://www.cpputest.org/ should be placed in btstack/test
|
# Requirements: cpputest.github.io
|
||||||
|
|
||||||
BTSTACK_ROOT = ../..
|
BTSTACK_ROOT = ../..
|
||||||
CPPUTEST_HOME = ${BTSTACK_ROOT}/test/cpputest
|
|
||||||
|
|
||||||
CFLAGS = -g -Wall -I. -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/include -I$(CPPUTEST_HOME)/include
|
CFLAGS = -g -Wall -I. -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/include
|
||||||
LDFLAGS += -lCppUTest -lCppUTestExt
|
LDFLAGS += -lCppUTest -lCppUTestExt
|
||||||
# -L$(CPPUTEST_HOME)
|
|
||||||
|
|
||||||
VPATH += ${BTSTACK_ROOT}/ble
|
VPATH += ${BTSTACK_ROOT}/ble
|
||||||
VPATH += ${BTSTACK_ROOT}/src
|
VPATH += ${BTSTACK_ROOT}/src
|
||||||
@ -24,7 +22,7 @@ all: des_iterator_test
|
|||||||
des_iterator_test: ${COMMON_OBJ} des_iterator_test.c
|
des_iterator_test: ${COMMON_OBJ} des_iterator_test.c
|
||||||
${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@
|
${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@
|
||||||
|
|
||||||
test:
|
test: all
|
||||||
./des_iterator_test
|
./des_iterator_test
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
CC = g++
|
CC = g++
|
||||||
|
|
||||||
# Requirements: http://www.cpputest.org/ should be placed in btstack/test
|
# Requirements: cpputest.github.io
|
||||||
|
|
||||||
BTSTACK_ROOT = ../..
|
BTSTACK_ROOT = ../..
|
||||||
CPPUTEST_HOME = ${BTSTACK_ROOT}/test/cpputest
|
|
||||||
|
|
||||||
CFLAGS = -DUNIT_TEST -x c++ -g -Wall -I. -I../ -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/ble -I${BTSTACK_ROOT}/include -I$(CPPUTEST_HOME)/include
|
CFLAGS = -DUNIT_TEST -x c++ -g -Wall -I. -I../ -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/ble -I${BTSTACK_ROOT}/include
|
||||||
LDFLAGS += -lCppUTest -lCppUTestExt
|
LDFLAGS += -lCppUTest -lCppUTestExt
|
||||||
# -L$(CPPUTEST_HOME)
|
|
||||||
|
|
||||||
VPATH += ${BTSTACK_ROOT}/ble
|
VPATH += ${BTSTACK_ROOT}/ble
|
||||||
VPATH += ${BTSTACK_ROOT}/src
|
VPATH += ${BTSTACK_ROOT}/src
|
||||||
@ -44,7 +42,7 @@ gatt_client_test: profile.h ${CORE_OBJ} ${COMMON_OBJ} gatt_client_test.o expecte
|
|||||||
le_central: ${CORE_OBJ} ${COMMON_OBJ} le_central.o
|
le_central: ${CORE_OBJ} ${COMMON_OBJ} le_central.o
|
||||||
${CC} ${CORE_OBJ} ${COMMON_OBJ} le_central.o ${CFLAGS} ${LDFLAGS} -o $@
|
${CC} ${CORE_OBJ} ${COMMON_OBJ} le_central.o ${CFLAGS} ${LDFLAGS} -o $@
|
||||||
|
|
||||||
test:
|
test: all
|
||||||
./gatt_client_test
|
./gatt_client_test
|
||||||
./le_central
|
./le_central
|
||||||
|
|
||||||
|
@ -1,13 +1,12 @@
|
|||||||
CC=g++
|
CC=g++
|
||||||
|
|
||||||
# Requirements: http://www.cpputest.org/ should be placed in btstack/test
|
# Requirements: cpputest.github.io
|
||||||
|
|
||||||
BTSTACK_ROOT = ../..
|
BTSTACK_ROOT = ../..
|
||||||
CPPUTEST_HOME = ${BTSTACK_ROOT}/test/cpputest
|
CPPUTEST_HOME = ${BTSTACK_ROOT}/test/cpputest
|
||||||
|
|
||||||
CFLAGS = -g -Wall -I. -I../ -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/include -I$(CPPUTEST_HOME)/include
|
CFLAGS = -g -Wall -I. -I../ -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/include
|
||||||
LDFLAGS += -lCppUTest -lCppUTestExt
|
LDFLAGS += -lCppUTest -lCppUTestExt
|
||||||
# -L$(CPPUTEST_HOME)/lib
|
|
||||||
|
|
||||||
VPATH += ${BTSTACK_ROOT}/ble
|
VPATH += ${BTSTACK_ROOT}/ble
|
||||||
VPATH += ${BTSTACK_ROOT}/src
|
VPATH += ${BTSTACK_ROOT}/src
|
||||||
@ -23,7 +22,7 @@ all: linked_list_test
|
|||||||
linked_list_test: ${COMMON_OBJ} linked_list_test.c
|
linked_list_test: ${COMMON_OBJ} linked_list_test.c
|
||||||
${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@
|
${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@
|
||||||
|
|
||||||
test:
|
test: all
|
||||||
./linked_list_test
|
./linked_list_test
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
@ -1,13 +1,12 @@
|
|||||||
CC=g++
|
CC=g++
|
||||||
|
|
||||||
# Requirements: http://www.cpputest.org/ should be placed in btstack/test
|
# Requirements: cpputest.github.io
|
||||||
|
|
||||||
BTSTACK_ROOT = ../..
|
BTSTACK_ROOT = ../..
|
||||||
CPPUTEST_HOME = ${BTSTACK_ROOT}/test/cpputest
|
CPPUTEST_HOME = ${BTSTACK_ROOT}/test/cpputest
|
||||||
|
|
||||||
CFLAGS = -g -Wall -I. -I../ -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/include -I${BTSTACK_ROOT}/ble -I$(CPPUTEST_HOME)/include
|
CFLAGS = -g -Wall -I. -I../ -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/include -I${BTSTACK_ROOT}/ble
|
||||||
LDFLAGS += -lCppUTest -lCppUTestExt
|
LDFLAGS += -lCppUTest -lCppUTestExt
|
||||||
# -L$(CPPUTEST_HOME)
|
|
||||||
|
|
||||||
VPATH += ${BTSTACK_ROOT}/ble
|
VPATH += ${BTSTACK_ROOT}/ble
|
||||||
VPATH += ${BTSTACK_ROOT}/src
|
VPATH += ${BTSTACK_ROOT}/src
|
||||||
@ -36,7 +35,7 @@ remote_device_db_memory_test: ${MEMORY_OBJ} remote_device_db_memory_test.c
|
|||||||
remote_device_db_fs_test: ${FS_OBJ} remote_device_db_fs_test.c
|
remote_device_db_fs_test: ${FS_OBJ} remote_device_db_fs_test.c
|
||||||
${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@
|
${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@
|
||||||
|
|
||||||
test:
|
test: all
|
||||||
./remote_device_db_memory_test
|
./remote_device_db_memory_test
|
||||||
./remote_device_db_fs_test
|
./remote_device_db_fs_test
|
||||||
|
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
CC = g++
|
CC = g++
|
||||||
|
|
||||||
# Requirements: http://www.cpputest.org/ should be placed in btstack/test
|
# Requirements: cpputest.github.io
|
||||||
|
|
||||||
BTSTACK_ROOT = ../..
|
BTSTACK_ROOT = ../..
|
||||||
CPPUTEST_HOME = ${BTSTACK_ROOT}/test/cpputest
|
CPPUTEST_HOME = ${BTSTACK_ROOT}/test/cpputest
|
||||||
|
|
||||||
CFLAGS = -g -Wall -I. -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/include -I$(CPPUTEST_HOME)/include
|
CFLAGS = -g -Wall -I. -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/include
|
||||||
LDFLAGS += -lCppUTest -lCppUTestExt
|
LDFLAGS += -lCppUTest -lCppUTestExt
|
||||||
# -L$(CPPUTEST_HOME)
|
# -L$(CPPUTEST_HOME)
|
||||||
|
|
||||||
@ -34,7 +34,7 @@ service_attribute_search_query: ${COMMON_OBJ} service_attribute_search_query.c
|
|||||||
service_search_query: ${COMMON_OBJ} service_search_query.c
|
service_search_query: ${COMMON_OBJ} service_search_query.c
|
||||||
${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@
|
${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@
|
||||||
|
|
||||||
test:
|
test: all
|
||||||
./sdp_rfcomm_query
|
./sdp_rfcomm_query
|
||||||
./general_sdp_query
|
./general_sdp_query
|
||||||
./service_attribute_search_query
|
./service_attribute_search_query
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
CC = g++
|
CC = g++
|
||||||
|
|
||||||
# Requirements: http://www.cpputest.org/ should be placed in btstack/test
|
# Requirements: cpputest.github.io
|
||||||
|
|
||||||
BTSTACK_ROOT = ../..
|
BTSTACK_ROOT = ../..
|
||||||
CPPUTEST_HOME = ${BTSTACK_ROOT}/test/cpputest
|
|
||||||
|
|
||||||
CFLAGS = -DUNIT_TEST -x c++ -g -Wall -Wno-unused -I. -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/ble -I${BTSTACK_ROOT}/include -I$(CPPUTEST_HOME)/include
|
CFLAGS = -DUNIT_TEST -x c++ -g -Wall -Wno-unused -I. -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/ble -I${BTSTACK_ROOT}/include
|
||||||
LDFLAGS += -lCppUTest -lCppUTestExt
|
LDFLAGS += -lCppUTest -lCppUTestExt
|
||||||
# -L$(CPPUTEST_HOME)/lib
|
|
||||||
|
|
||||||
VPATH += ${BTSTACK_ROOT}/ble
|
VPATH += ${BTSTACK_ROOT}/ble
|
||||||
VPATH += ${BTSTACK_ROOT}/src
|
VPATH += ${BTSTACK_ROOT}/src
|
||||||
@ -39,7 +37,7 @@ security_manager: ${CORE_OBJ} ${COMMON_OBJ} security_manager.c
|
|||||||
aestest: aestest.c rijndael.c
|
aestest: aestest.c rijndael.c
|
||||||
${CC} ${CFLAGS} -m32 rijndael.c aestest.c -o $@
|
${CC} ${CFLAGS} -m32 rijndael.c aestest.c -o $@
|
||||||
|
|
||||||
test:
|
test: all
|
||||||
./security_manager
|
./security_manager
|
||||||
./aestest
|
./aestest
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user