| 
									
										
										
										
											2020-12-28 15:15:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # To compile on SunOS: add "-lsocket -lnsl" to LDFLAGS
 | 
					
						
							|  |  |  | # To compile with PKCS11: add "-lpkcs11-helper" to LDFLAGS
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CFLAGS	?= -O2 | 
					
						
							| 
									
										
										
										
											2021-03-06 01:41:47 +01:00
										 |  |  | WARNING_CFLAGS ?= -Wall -W -Wdeclaration-after-statement -Wunused | 
					
						
							| 
									
										
										
										
											2020-12-28 15:15:37 +00:00
										 |  |  | LDFLAGS ?= | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | LOCAL_CFLAGS = $(WARNING_CFLAGS) -I../include -D_FILE_OFFSET_BITS=64 | 
					
						
							| 
									
										
										
										
											2021-03-06 01:41:47 +01:00
										 |  |  | LOCAL_LDFLAGS = -L../library			\
 | 
					
						
							| 
									
										
										
										
											2020-12-28 15:15:37 +00:00
										 |  |  | 		-lmbedtls$(SHARED_SUFFIX)	\
 | 
					
						
							|  |  |  | 		-lmbedx509$(SHARED_SUFFIX)	\
 | 
					
						
							|  |  |  | 		-lmbedcrypto$(SHARED_SUFFIX) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # 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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ifndef SHARED | 
					
						
							|  |  |  | DEP=../library/libmbedcrypto.a ../library/libmbedx509.a ../library/libmbedtls.a | 
					
						
							|  |  |  | else | 
					
						
							|  |  |  | DEP=../library/libmbedcrypto.$(DLEXT) ../library/libmbedx509.$(DLEXT) ../library/libmbedtls.$(DLEXT) | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ifdef DEBUG | 
					
						
							|  |  |  | LOCAL_CFLAGS += -g3 | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # if we're running on Windows, build for Windows
 | 
					
						
							|  |  |  | ifdef WINDOWS | 
					
						
							|  |  |  | WINDOWS_BUILD=1 | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ifdef WINDOWS_BUILD | 
					
						
							|  |  |  | DLEXT=dll | 
					
						
							|  |  |  | EXEXT=.exe | 
					
						
							|  |  |  | LOCAL_LDFLAGS += -lws2_32 | 
					
						
							|  |  |  | ifdef SHARED | 
					
						
							|  |  |  | SHARED_SUFFIX=.$(DLEXT) | 
					
						
							|  |  |  | endif | 
					
						
							| 
									
										
										
										
											2021-03-06 01:41:47 +01:00
										 |  |  | PYTHON ?= python | 
					
						
							| 
									
										
										
										
											2020-12-28 15:15:37 +00:00
										 |  |  | else | 
					
						
							|  |  |  | DLEXT ?= so | 
					
						
							|  |  |  | EXEXT= | 
					
						
							|  |  |  | SHARED_SUFFIX= | 
					
						
							| 
									
										
										
										
											2021-03-06 01:41:47 +01:00
										 |  |  | # python2 for POSIX since FreeBSD has only python2 as default.
 | 
					
						
							|  |  |  | PYTHON ?= python2 | 
					
						
							| 
									
										
										
										
											2020-12-28 15:15:37 +00:00
										 |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Zlib shared library extensions:
 | 
					
						
							|  |  |  | ifdef ZLIB | 
					
						
							|  |  |  | LOCAL_LDFLAGS += -lz | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-06 01:41:47 +01:00
										 |  |  | # A test application is built for each suites/test_suite_*.data file.
 | 
					
						
							|  |  |  | # Application name is same as .data file's base name and can be
 | 
					
						
							|  |  |  | # constructed by stripping path 'suites/' and extension .data.
 | 
					
						
							|  |  |  | APPS = $(basename $(subst suites/,,$(wildcard suites/test_suite_*.data))) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Construct executable name by adding OS specific suffix $(EXEXT).
 | 
					
						
							|  |  |  | BINARIES := $(addsuffix $(EXEXT),$(APPS)) | 
					
						
							| 
									
										
										
										
											2020-12-28 15:15:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | .SILENT: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .PHONY: all check test clean | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-06 01:41:47 +01:00
										 |  |  | all: $(BINARIES) | 
					
						
							| 
									
										
										
										
											2020-12-28 15:15:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | $(DEP): | 
					
						
							|  |  |  | 	$(MAKE) -C ../library | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-06 01:41:47 +01:00
										 |  |  | C_FILES := $(addsuffix .c,$(APPS)) | 
					
						
							| 
									
										
										
										
											2020-12-28 15:15:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-06 01:41:47 +01:00
										 |  |  | # Wildcard target for test code generation:
 | 
					
						
							|  |  |  | # A .c file is generated for each .data file in the suites/ directory. Each .c
 | 
					
						
							|  |  |  | # file depends on a .data and .function file from suites/ directory. Following
 | 
					
						
							|  |  |  | # nameing convention is followed:
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | #     C file        |        Depends on
 | 
					
						
							|  |  |  | #-----------------------------------------------------------------------------
 | 
					
						
							|  |  |  | #  foo.c            | suites/foo.function suites/foo.data
 | 
					
						
							|  |  |  | #  foo.bar.c        | suites/foo.function suites/foo.bar.data
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | # Note above that .c and .data files have same base name.
 | 
					
						
							|  |  |  | # However, corresponding .function file's base name is the word before first
 | 
					
						
							|  |  |  | # dot in .c file's base name.
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | .SECONDEXPANSION: | 
					
						
							|  |  |  | %.c: suites/$$(firstword $$(subst ., ,$$*)).function suites/%.data scripts/generate_test_code.py suites/helpers.function suites/main_test.function suites/host_test.function | 
					
						
							| 
									
										
										
										
											2020-12-28 15:15:37 +00:00
										 |  |  | 	echo "  Gen   $@" | 
					
						
							| 
									
										
										
										
											2021-03-06 01:41:47 +01:00
										 |  |  | 	$(PYTHON) scripts/generate_test_code.py -f suites/$(firstword $(subst ., ,$*)).function \
 | 
					
						
							|  |  |  | 		-d suites/$*.data \
 | 
					
						
							|  |  |  | 		-t suites/main_test.function \
 | 
					
						
							|  |  |  | 		-p suites/host_test.function \
 | 
					
						
							|  |  |  | 		-s suites  \
 | 
					
						
							|  |  |  | 		--helpers-file suites/helpers.function \
 | 
					
						
							|  |  |  | 		-o . | 
					
						
							| 
									
										
										
										
											2020-12-28 15:15:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-06 01:41:47 +01:00
										 |  |  | $(BINARIES): %$(EXEXT): %.c $(DEP) | 
					
						
							| 
									
										
										
										
											2020-12-28 15:15:37 +00:00
										 |  |  | 	echo "  CC    $<" | 
					
						
							|  |  |  | 	$(CC) $(LOCAL_CFLAGS) $(CFLAGS) $<	$(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | clean: | 
					
						
							|  |  |  | ifndef WINDOWS | 
					
						
							| 
									
										
										
										
											2021-03-06 01:41:47 +01:00
										 |  |  | 	rm -rf $(BINARIES) *.c *.datax TESTS | 
					
						
							| 
									
										
										
										
											2020-12-28 15:15:37 +00:00
										 |  |  | else | 
					
						
							| 
									
										
										
										
											2021-03-06 01:41:47 +01:00
										 |  |  | 	del /Q /F *.c *.exe *.datax | 
					
						
							|  |  |  | ifneq ($(wildcard TESTS/.*),) | 
					
						
							|  |  |  | 	rmdir /Q /S TESTS | 
					
						
							|  |  |  | endif | 
					
						
							| 
									
										
										
										
											2020-12-28 15:15:37 +00:00
										 |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-06 01:41:47 +01:00
										 |  |  | # Test suites caught by SKIP_TEST_SUITES are built but not executed.
 | 
					
						
							|  |  |  | check: $(BINARIES) | 
					
						
							|  |  |  | 	perl scripts/run-test-suites.pl --skip=$(SKIP_TEST_SUITES) | 
					
						
							| 
									
										
										
										
											2020-12-28 15:15:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | test: check | 
					
						
							| 
									
										
										
										
											2021-03-06 01:41:47 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Create separate targets for generating embedded tests.
 | 
					
						
							|  |  |  | EMBEDDED_TESTS := $(addprefix embedded_,$(APPS)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Generate test code for target.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .SECONDEXPANSION: | 
					
						
							|  |  |  | $(EMBEDDED_TESTS): embedded_%: suites/$$(firstword $$(subst ., ,$$*)).function suites/%.data scripts/generate_test_code.py suites/helpers.function suites/main_test.function suites/target_test.function | 
					
						
							|  |  |  | 	echo "  Gen  ./TESTS/mbedtls/$*/$*.c" | 
					
						
							|  |  |  | 	$(PYTHON) scripts/generate_test_code.py -f suites/$(firstword $(subst ., ,$*)).function \
 | 
					
						
							|  |  |  | 		-d suites/$*.data \
 | 
					
						
							|  |  |  | 		-t suites/main_test.function \
 | 
					
						
							|  |  |  | 		-p suites/target_test.function \
 | 
					
						
							|  |  |  | 		-s suites  \
 | 
					
						
							|  |  |  | 		--helpers-file suites/helpers.function \
 | 
					
						
							|  |  |  | 		-o ./TESTS/mbedtls/$* | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | generate-target-tests: $(EMBEDDED_TESTS) | 
					
						
							|  |  |  | 
 |