test: move crypto tests from seurity manager into own crypto folder

This commit is contained in:
Matthias Ringwald 2018-10-26 10:32:43 +02:00
parent 62609879d3
commit bdcc259dd8
9 changed files with 78 additions and 23 deletions

5
test/crypto/.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
ecc_micro_ecc
aestest
ecc_mbed_tls
ecc_micro_ecc
aes_cmac_test

71
test/crypto/Makefile Normal file
View File

@ -0,0 +1,71 @@
CC = g++
# Requirements: cpputest.github.io
BTSTACK_ROOT = ../..
CFLAGS = -DUNIT_TEST -g
CPPFLAGS = -x c++ -Wall -Wno-unused
CFLAGS += -I. -I.. -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/platform/posix
CFLAGS += -I${BTSTACK_ROOT}/3rd-party/mbedtls/include
CFLAGS += -I${BTSTACK_ROOT}/3rd-party/micro-ecc
CFLAGS += -I${BTSTACK_ROOT}/test/rijndael
LDFLAGS += -lCppUTest -lCppUTestExt
VPATH += ${BTSTACK_ROOT}/src
VPATH += ${BTSTACK_ROOT}/src/ble
VPATH += ${BTSTACK_ROOT}/platform/posix
VPATH += ${BTSTACK_ROOT}/3rd-party/micro-ecc
VPATH += ${BTSTACK_ROOT}/test/rijndael
COMMON = \
btstack_crypto.c \
btstack_linked_list.c \
btstack_memory.c \
btstack_memory_pool.c \
btstack_run_loop.c \
btstack_run_loop_posix.c \
hci_cmd.c \
hci_dump.c \
le_device_db_memory.c \
mock.c \
rijndael.c \
sm.c \
btstack_util.c \
COMMON_OBJ = $(COMMON:.c=.o)
MBEDTLS = \
ecp.c \
ecp_curves.c \
bignum.c \
MICROECC = \
uECC.c
all: aestest ecc_micro_ecc aes_cmac_test
aestest: aestest.o rijndael.o
${CC} ${CFLAGS} $^ -o $@
ecc_micro_ecc: ecc_micro_ecc.o ${MICROECC}
gcc ${CFLAGS} $^ -o $@
aes_cmac_test: aes_cmac_test.o aes_cmac.o rijndael.o
gcc ${CFLAGS} $^ -o $@
sm_mbedtls_allocator_test: sm_mbedtls_allocator.o hci_dump.o btstack_util.o sm_mbedtls_allocator_test.c
${CC} sm_mbedtls_allocator.o btstack_util.o hci_dump.o sm_mbedtls_allocator_test.c ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o $@
test: all
./aes_cmac_test
./aestest
./ecc_micro_ecc
./aes_cmac_test
clean:
rm -f aestest ecc_micro_ecc aes_cmac_test
rm -f *.o
rm -rf *.dSYM

View File

@ -1,6 +1,2 @@
ecc_micro_ecc
aestest
ecc_mbed_tls
ecc_micro_ecc
security_manager
aes_cmac_test

View File

@ -43,33 +43,16 @@ MBEDTLS = \
MICROECC = \
uECC.c
all: security_manager aestest ecc_micro_ecc aes_cmac_test
# sm_mbedtls_allocator_test
all: security_manager
security_manager: ${CORE_OBJ} ${COMMON_OBJ} security_manager.c
${CC} ${CORE_OBJ} ${COMMON_OBJ} security_manager.c ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o $@
aestest: aestest.o rijndael.o
${CC} ${CFLAGS} $^ -o $@
ecc_micro_ecc: ecc_micro_ecc.o ${MICROECC}
gcc ${CFLAGS} $^ -o $@
aes_cmac_test: aes_cmac_test.o aes_cmac.o rijndael.o
gcc ${CFLAGS} $^ -o $@
sm_mbedtls_allocator_test: sm_mbedtls_allocator.o hci_dump.o btstack_util.o sm_mbedtls_allocator_test.c
${CC} sm_mbedtls_allocator.o btstack_util.o hci_dump.o sm_mbedtls_allocator_test.c ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o $@
test: all
./security_manager
./aes_cmac_test
./aestest
./ecc_micro_ecc
./aes_cmac_test
clean:
rm -f security_manager aestest ecc_micro_ecc aes_cmac_test
rm -f security_manager
rm -f *.o
rm -rf *.dSYM