2009-07-11 21:15:43 +02:00
|
|
|
|
|
|
|
# To compile on SunOS: add "-lsocket -lnsl" to LDFLAGS
|
2011-01-18 16:27:19 +01:00
|
|
|
# To compile with PKCS11: add "-lpkcs11-helper" to LDFLAGS
|
2009-07-11 21:15:43 +02:00
|
|
|
|
2017-07-19 11:15:54 +02:00
|
|
|
CFLAGS ?= -O2
|
2015-02-18 16:55:05 +01:00
|
|
|
WARNING_CFLAGS ?= -Wall -W -Wdeclaration-after-statement -Wno-unused-function -Wno-unused-value
|
2015-02-18 16:47:52 +01:00
|
|
|
LDFLAGS ?=
|
2009-07-11 21:15:43 +02:00
|
|
|
|
2015-02-18 16:55:05 +01:00
|
|
|
LOCAL_CFLAGS = $(WARNING_CFLAGS) -I../include -D_FILE_OFFSET_BITS=64
|
2017-03-23 13:32:54 +01:00
|
|
|
LOCAL_LDFLAGS = -L../library \
|
2015-06-25 08:45:12 +02:00
|
|
|
-lmbedtls$(SHARED_SUFFIX) \
|
2015-06-24 13:06:24 +02:00
|
|
|
-lmbedx509$(SHARED_SUFFIX) \
|
2015-06-25 08:45:12 +02:00
|
|
|
-lmbedcrypto$(SHARED_SUFFIX)
|
2009-07-11 21:15:43 +02:00
|
|
|
|
2018-06-25 13:10:00 +02:00
|
|
|
# Enable definition of various functions used throughout the testsuite
|
|
|
|
# (gethostname, strdup, fileno...) even when compiling with -std=c99. Harmless
|
|
|
|
# on non-POSIX platforms.
|
|
|
|
LOCAL_CFLAGS += -D_POSIX_C_SOURCE=200809L
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
ifndef SHARED
|
2015-06-24 13:06:24 +02:00
|
|
|
DEP=../library/libmbedcrypto.a ../library/libmbedx509.a ../library/libmbedtls.a
|
2014-03-26 13:26:52 +01:00
|
|
|
else
|
2015-06-24 13:06:24 +02:00
|
|
|
DEP=../library/libmbedcrypto.$(DLEXT) ../library/libmbedx509.$(DLEXT) ../library/libmbedtls.$(DLEXT)
|
2014-03-26 13:26:52 +01:00
|
|
|
endif
|
|
|
|
|
2012-04-05 14:08:29 +02:00
|
|
|
ifdef DEBUG
|
2015-02-18 16:55:05 +01:00
|
|
|
LOCAL_CFLAGS += -g3
|
2012-04-05 14:08:29 +02:00
|
|
|
endif
|
|
|
|
|
2015-06-24 13:06:24 +02:00
|
|
|
# if we're running on Windows, build for Windows
|
2012-05-10 22:49:10 +02:00
|
|
|
ifdef WINDOWS
|
2015-02-14 00:04:58 +01:00
|
|
|
WINDOWS_BUILD=1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef WINDOWS_BUILD
|
|
|
|
DLEXT=dll
|
|
|
|
EXEXT=.exe
|
2015-02-18 16:47:52 +01:00
|
|
|
LOCAL_LDFLAGS += -lws2_32
|
2015-02-14 00:04:58 +01:00
|
|
|
ifdef SHARED
|
|
|
|
SHARED_SUFFIX=.$(DLEXT)
|
|
|
|
endif
|
2015-06-24 12:16:20 +02:00
|
|
|
else
|
2018-03-27 20:17:21 +02:00
|
|
|
DLEXT ?= so
|
2015-06-24 12:16:20 +02:00
|
|
|
EXEXT=
|
|
|
|
SHARED_SUFFIX=
|
2012-05-10 22:49:10 +02:00
|
|
|
endif
|
|
|
|
|
2012-07-03 15:30:23 +02:00
|
|
|
# Zlib shared library extensions:
|
|
|
|
ifdef ZLIB
|
2015-02-18 16:47:52 +01:00
|
|
|
LOCAL_LDFLAGS += -lz
|
2012-07-03 15:30:23 +02:00
|
|
|
endif
|
|
|
|
|
2018-02-06 23:23:45 +01:00
|
|
|
# Python executable
|
|
|
|
ifndef PYTHON
|
|
|
|
ifdef WINDOWS
|
|
|
|
PYTHON=python
|
|
|
|
else
|
|
|
|
PYTHON=python2
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2017-03-23 13:32:54 +01:00
|
|
|
APPS = test_suite_aes.ecb test_suite_aes.cbc \
|
|
|
|
test_suite_aes.cfb test_suite_aes.ofb \
|
|
|
|
test_suite_aes.xts \
|
|
|
|
test_suite_aes.rest test_suite_arc4 \
|
|
|
|
test_suite_aria test_suite_asn1write \
|
|
|
|
test_suite_base64 test_suite_blowfish \
|
|
|
|
test_suite_camellia test_suite_ccm \
|
|
|
|
test_suite_chacha20 test_suite_chachapoly \
|
|
|
|
test_suite_cmac \
|
|
|
|
test_suite_cipher.chachapoly \
|
|
|
|
test_suite_cipher.aes \
|
|
|
|
test_suite_cipher.arc4 test_suite_cipher.ccm \
|
|
|
|
test_suite_cipher.chacha20 \
|
|
|
|
test_suite_cipher.gcm \
|
|
|
|
test_suite_cipher.blowfish \
|
|
|
|
test_suite_cipher.camellia \
|
|
|
|
test_suite_cipher.des test_suite_cipher.null \
|
|
|
|
test_suite_cipher.padding \
|
|
|
|
test_suite_ctr_drbg test_suite_debug \
|
|
|
|
test_suite_des test_suite_dhm \
|
|
|
|
test_suite_ecdh test_suite_ecdsa \
|
|
|
|
test_suite_ecjpake test_suite_ecp \
|
|
|
|
test_suite_error test_suite_entropy \
|
|
|
|
test_suite_gcm.aes128_de \
|
|
|
|
test_suite_gcm.aes192_de \
|
|
|
|
test_suite_gcm.aes256_de \
|
|
|
|
test_suite_gcm.aes128_en \
|
|
|
|
test_suite_gcm.aes192_en \
|
|
|
|
test_suite_gcm.aes256_en \
|
|
|
|
test_suite_gcm.camellia \
|
|
|
|
test_suite_hkdf \
|
|
|
|
test_suite_hmac_drbg.misc \
|
|
|
|
test_suite_hmac_drbg.no_reseed \
|
|
|
|
test_suite_hmac_drbg.nopr \
|
|
|
|
test_suite_hmac_drbg.pr \
|
|
|
|
test_suite_md test_suite_mdx \
|
|
|
|
test_suite_memory_buffer_alloc \
|
|
|
|
test_suite_mpi \
|
|
|
|
test_suite_nist_kw \
|
|
|
|
test_suite_pem test_suite_pkcs1_v15 \
|
|
|
|
test_suite_pkcs1_v21 test_suite_pkcs5 \
|
|
|
|
test_suite_pkparse test_suite_pkwrite \
|
|
|
|
test_suite_pk \
|
|
|
|
test_suite_poly1305 \
|
|
|
|
test_suite_rsa test_suite_shax \
|
|
|
|
test_suite_ssl test_suite_timing \
|
|
|
|
test_suite_x509parse test_suite_x509write \
|
|
|
|
test_suite_xtea test_suite_version
|
|
|
|
|
|
|
|
BINARIES := $(addsuffix $(EXEXT),$(APPS))
|
|
|
|
|
|
|
|
# Look up for associated function files
|
2017-03-20 23:21:22 +01:00
|
|
|
func.test_suite_aes.ecb := test_suite_aes
|
|
|
|
func.test_suite_aes.cbc := test_suite_aes
|
|
|
|
func.test_suite_aes.cfb := test_suite_aes
|
|
|
|
func.test_suite_aes.ofb := test_suite_aes
|
|
|
|
func.test_suite_aes.xts := test_suite_aes
|
|
|
|
func.test_suite_aes.rest := test_suite_aes
|
|
|
|
func.test_suite_arc4 := test_suite_arc4
|
|
|
|
func.test_suite_aria := test_suite_aria
|
|
|
|
func.test_suite_asn1write := test_suite_asn1write
|
|
|
|
func.test_suite_base64 := test_suite_base64
|
|
|
|
func.test_suite_blowfish := test_suite_blowfish
|
|
|
|
func.test_suite_camellia := test_suite_camellia
|
|
|
|
func.test_suite_ccm := test_suite_ccm
|
|
|
|
func.test_suite_chacha20 := test_suite_chacha20
|
|
|
|
func.test_suite_chachapoly := test_suite_chachapoly
|
|
|
|
func.test_suite_cmac := test_suite_cmac
|
|
|
|
func.test_suite_cipher.chachapoly := test_suite_cipher
|
|
|
|
func.test_suite_cipher.aes := test_suite_cipher
|
|
|
|
func.test_suite_cipher.arc4 := test_suite_cipher
|
|
|
|
func.test_suite_cipher.ccm := test_suite_cipher
|
|
|
|
func.test_suite_cipher.chacha20 := test_suite_cipher
|
|
|
|
func.test_suite_cipher.gcm := test_suite_cipher
|
|
|
|
func.test_suite_cipher.blowfish := test_suite_cipher
|
|
|
|
func.test_suite_cipher.camellia := test_suite_cipher
|
|
|
|
func.test_suite_cipher.des := test_suite_cipher
|
|
|
|
func.test_suite_cipher.null := test_suite_cipher
|
|
|
|
func.test_suite_cipher.padding := test_suite_cipher
|
|
|
|
func.test_suite_ctr_drbg := test_suite_ctr_drbg
|
|
|
|
func.test_suite_debug := test_suite_debug
|
|
|
|
func.test_suite_des := test_suite_des
|
|
|
|
func.test_suite_dhm := test_suite_dhm
|
|
|
|
func.test_suite_ecdh := test_suite_ecdh
|
|
|
|
func.test_suite_ecdsa := test_suite_ecdsa
|
|
|
|
func.test_suite_ecjpake := test_suite_ecjpake
|
|
|
|
func.test_suite_ecp := test_suite_ecp
|
|
|
|
func.test_suite_error := test_suite_error
|
|
|
|
func.test_suite_entropy := test_suite_entropy
|
|
|
|
func.test_suite_gcm.aes128_de := test_suite_gcm
|
|
|
|
func.test_suite_gcm.aes192_de := test_suite_gcm
|
|
|
|
func.test_suite_gcm.aes256_de := test_suite_gcm
|
|
|
|
func.test_suite_gcm.aes128_en := test_suite_gcm
|
|
|
|
func.test_suite_gcm.aes192_en := test_suite_gcm
|
|
|
|
func.test_suite_gcm.aes256_en := test_suite_gcm
|
|
|
|
func.test_suite_gcm.camellia := test_suite_gcm
|
|
|
|
func.test_suite_hkdf := test_suite_hkdf
|
|
|
|
func.test_suite_hmac_drbg.misc := test_suite_hmac_drbg
|
|
|
|
func.test_suite_hmac_drbg.no_reseed := test_suite_hmac_drbg
|
|
|
|
func.test_suite_hmac_drbg.nopr := test_suite_hmac_drbg
|
|
|
|
func.test_suite_hmac_drbg.pr := test_suite_hmac_drbg
|
|
|
|
func.test_suite_md := test_suite_md
|
|
|
|
func.test_suite_mdx := test_suite_mdx
|
|
|
|
func.test_suite_memory_buffer_alloc := test_suite_memory_buffer_alloc
|
|
|
|
func.test_suite_mpi := test_suite_mpi
|
|
|
|
func.test_suite_nist_kw := test_suite_nist_kw
|
|
|
|
func.test_suite_pem := test_suite_pem
|
|
|
|
func.test_suite_pkcs1_v15 := test_suite_pkcs1_v15
|
|
|
|
func.test_suite_pkcs1_v21 := test_suite_pkcs1_v21
|
|
|
|
func.test_suite_pkcs5 := test_suite_pkcs5
|
|
|
|
func.test_suite_pkparse := test_suite_pkparse
|
|
|
|
func.test_suite_pkwrite := test_suite_pkwrite
|
|
|
|
func.test_suite_pk := test_suite_pk
|
|
|
|
func.test_suite_rsa := test_suite_rsa
|
|
|
|
func.test_suite_shax := test_suite_shax
|
|
|
|
func.test_suite_ssl := test_suite_ssl
|
|
|
|
func.test_suite_timing := test_suite_timing
|
|
|
|
func.test_suite_x509parse := test_suite_x509parse
|
|
|
|
func.test_suite_x509write := test_suite_x509write
|
|
|
|
func.test_suite_xtea := test_suite_xtea
|
|
|
|
func.test_suite_version := test_suite_version
|
2009-07-11 21:15:43 +02:00
|
|
|
|
|
|
|
.SILENT:
|
|
|
|
|
2015-06-24 13:06:24 +02:00
|
|
|
.PHONY: all check test clean
|
|
|
|
|
2017-06-09 16:02:36 +02:00
|
|
|
all: $(BINARIES)
|
|
|
|
|
2015-06-24 13:06:24 +02:00
|
|
|
$(DEP):
|
2015-06-26 16:50:24 +02:00
|
|
|
$(MAKE) -C ../library
|
2015-06-24 13:06:24 +02:00
|
|
|
|
2015-07-08 16:02:43 +02:00
|
|
|
# invoke perl explicitly for the sake of mingw32-make
|
|
|
|
|
2017-03-23 13:32:54 +01:00
|
|
|
C_FILES := $(addsuffix .c,$(APPS))
|
2013-07-24 18:05:00 +02:00
|
|
|
|
2017-03-23 13:32:54 +01:00
|
|
|
.SECONDEXPANSION:
|
2018-03-06 12:49:41 +01:00
|
|
|
$(C_FILES): %.c: suites/$$(func.$$*).function suites/%.data scripts/generate_test_code.py suites/helpers.function suites/main_test.function suites/host_test.function
|
2015-07-08 23:12:06 +02:00
|
|
|
echo " Gen $@"
|
2018-03-06 12:49:41 +01:00
|
|
|
$(PYTHON) scripts/generate_test_code.py -f suites/$(func.$*).function \
|
2017-03-28 02:48:31 +02:00
|
|
|
-d suites/$*.data \
|
2017-06-09 16:02:36 +02:00
|
|
|
-t suites/main_test.function \
|
2017-07-19 11:15:54 +02:00
|
|
|
-p suites/host_test.function \
|
2017-03-28 02:48:31 +02:00
|
|
|
-s suites \
|
|
|
|
--help-file suites/helpers.function \
|
|
|
|
-o .
|
2013-04-08 18:09:51 +02:00
|
|
|
|
2012-03-20 14:50:09 +01:00
|
|
|
|
2017-03-23 13:32:54 +01:00
|
|
|
$(BINARIES): %$(EXEXT): %.c $(DEP)
|
2015-07-08 23:12:06 +02:00
|
|
|
echo " CC $<"
|
2015-02-18 16:55:05 +01:00
|
|
|
$(CC) $(LOCAL_CFLAGS) $(CFLAGS) $< $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@
|
2013-04-08 18:09:51 +02:00
|
|
|
|
|
|
|
|
2009-07-11 21:15:43 +02:00
|
|
|
clean:
|
2012-05-10 23:26:28 +02:00
|
|
|
ifndef WINDOWS
|
2017-03-28 02:48:31 +02:00
|
|
|
rm -rf $(APPS) *.c *.data TESTS
|
2015-06-24 13:06:24 +02:00
|
|
|
else
|
2017-03-28 02:48:31 +02:00
|
|
|
del /Q /F *.c *.exe *.data
|
2017-03-20 23:21:22 +01:00
|
|
|
rmdir /Q /S TESTS
|
2012-05-10 23:26:28 +02:00
|
|
|
endif
|
2009-07-11 21:15:43 +02:00
|
|
|
|
2017-03-23 13:32:54 +01:00
|
|
|
check: $(BINARIES)
|
2015-07-08 22:20:03 +02:00
|
|
|
perl scripts/run-test-suites.pl
|
2015-06-24 13:06:24 +02:00
|
|
|
|
|
|
|
test: check
|
2017-03-20 23:21:22 +01:00
|
|
|
|
2017-06-09 16:02:36 +02:00
|
|
|
# Create separate targets for generating embedded tests.
|
|
|
|
EMBEDDED_TESTS := $(addprefix embedded_,$(APPS))
|
2017-03-20 23:21:22 +01:00
|
|
|
|
2017-07-19 11:15:54 +02:00
|
|
|
# Generate test code for target.
|
2017-03-20 23:21:22 +01:00
|
|
|
|
|
|
|
.SECONDEXPANSION:
|
2018-03-06 12:49:41 +01:00
|
|
|
$(EMBEDDED_TESTS): embedded_%: suites/$$(func.$$*).function suites/%.data scripts/generate_test_code.py suites/helpers.function suites/main_test.function suites/target_test.function
|
2017-03-28 02:48:31 +02:00
|
|
|
echo " Gen ./TESTS/mbedtls/$*/$*.c"
|
2018-03-06 12:49:41 +01:00
|
|
|
$(PYTHON) scripts/generate_test_code.py -f suites/$(func.$*).function \
|
2017-03-20 23:21:22 +01:00
|
|
|
-d suites/$*.data \
|
2017-06-09 16:02:36 +02:00
|
|
|
-t suites/main_test.function \
|
2017-07-19 11:15:54 +02:00
|
|
|
-p suites/target_test.function \
|
2017-03-20 23:21:22 +01:00
|
|
|
-s suites \
|
|
|
|
--help-file suites/helpers.function \
|
2017-03-28 02:48:31 +02:00
|
|
|
-o ./TESTS/mbedtls/$*
|
2017-03-20 23:21:22 +01:00
|
|
|
|
2017-06-09 16:02:36 +02:00
|
|
|
gen-embedded-test: $(EMBEDDED_TESTS)
|
2017-03-20 23:21:22 +01:00
|
|
|
|