Gilles Peskine | 570e548 | 2024-01-02 18:11:10 +0100 | [diff] [blame] | 1 | MBEDTLS_TEST_PATH = . |
Gilles Peskine | f3d1ae1 | 2023-12-22 11:40:58 +0100 | [diff] [blame] | 2 | include ../scripts/common.make |
Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 3 | |
Gilles Peskine | 396853a | 2021-09-20 18:57:55 +0200 | [diff] [blame] | 4 | # Set this to -v to see the details of failing test cases |
| 5 | TEST_FLAGS ?= $(if $(filter-out 0 OFF Off off NO No no FALSE False false N n,$(CTEST_OUTPUT_ON_FAILURE)),-v,) |
| 6 | |
Ronald Cron | c29afb6 | 2024-07-01 14:50:54 +0200 | [diff] [blame] | 7 | # Also include private headers, for the sake of invasive tests. |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 8 | LOCAL_CFLAGS += -I$(MBEDTLS_PATH)/library -I$(MBEDTLS_PATH)/tf-psa-crypto/core -I$(MBEDTLS_PATH)/tf-psa-crypto/drivers/builtin/src |
Ronald Cron | 1451a76 | 2024-06-10 16:02:04 +0200 | [diff] [blame] | 9 | |
Nicholas Wilson | 61fa436 | 2018-06-25 12:10:00 +0100 | [diff] [blame] | 10 | # Enable definition of various functions used throughout the testsuite |
| 11 | # (gethostname, strdup, fileno...) even when compiling with -std=c99. Harmless |
| 12 | # on non-POSIX platforms. |
| 13 | LOCAL_CFLAGS += -D_POSIX_C_SOURCE=200809L |
| 14 | |
Gilles Peskine | 5168155 | 2019-05-20 19:35:37 +0200 | [diff] [blame] | 15 | ifdef RECORD_PSA_STATUS_COVERAGE_LOG |
| 16 | LOCAL_CFLAGS += -Werror -DRECORD_PSA_STATUS_COVERAGE_LOG |
| 17 | endif |
| 18 | |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 19 | GENERATED_BIGNUM_DATA_FILES := $(addprefix ../tf-psa-crypto/,$(shell \ |
David Horstmann | f6f3bca | 2024-05-29 17:57:08 +0100 | [diff] [blame] | 20 | $(PYTHON) ../framework/scripts/generate_bignum_tests.py --list || \ |
Werner Lewis | 8b2df74 | 2022-07-08 13:54:57 +0100 | [diff] [blame] | 21 | echo FAILED \ |
| 22 | )) |
| 23 | ifeq ($(GENERATED_BIGNUM_DATA_FILES),FAILED) |
David Horstmann | f6f3bca | 2024-05-29 17:57:08 +0100 | [diff] [blame] | 24 | $(error "$(PYTHON) ../framework/scripts/generate_bignum_tests.py --list" failed) |
Werner Lewis | 8b2df74 | 2022-07-08 13:54:57 +0100 | [diff] [blame] | 25 | endif |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 26 | GENERATED_CRYPTO_DATA_FILES += $(GENERATED_BIGNUM_DATA_FILES) |
Gilles Peskine | b0aa75e | 2024-05-23 16:38:07 +0200 | [diff] [blame] | 27 | |
Ronald Cron | 81a674e | 2025-03-11 12:53:45 +0100 | [diff] [blame] | 28 | GENERATED_MBEDTLS_CONFIG_DATA_FILES := $(patsubst tests/%,%,$(shell \ |
Gilles Peskine | e154e6f | 2024-05-23 16:31:22 +0200 | [diff] [blame] | 29 | $(PYTHON) ../framework/scripts/generate_config_tests.py --list || \ |
| 30 | echo FAILED \ |
| 31 | )) |
Ronald Cron | 81a674e | 2025-03-11 12:53:45 +0100 | [diff] [blame] | 32 | ifeq ($(GENERATED_MBEDTLS_CONFIG_DATA_FILES),FAILED) |
Gilles Peskine | e154e6f | 2024-05-23 16:31:22 +0200 | [diff] [blame] | 33 | $(error "$(PYTHON) ../framework/scripts/generate_config_tests.py --list" failed) |
| 34 | endif |
Ronald Cron | 81a674e | 2025-03-11 12:53:45 +0100 | [diff] [blame] | 35 | |
| 36 | GENERATED_PSA_CONFIG_DATA_FILES := $(addprefix ../tf-psa-crypto/,$(shell \ |
| 37 | $(PYTHON) ../tf-psa-crypto/framework/scripts/generate_config_tests.py --list || \ |
| 38 | echo FAILED \ |
| 39 | )) |
| 40 | ifeq ($(GENERATED_PSA_CONFIG_DATA_FILES),FAILED) |
| 41 | $(error "$(PYTHON) ../tf-psa-crypto/framework/scripts/generate_config_tests.py --list" failed) |
| 42 | endif |
| 43 | |
| 44 | GENERATED_CONFIG_DATA_FILES := $(GENERATED_MBEDTLS_CONFIG_DATA_FILES) $(GENERATED_PSA_CONFIG_DATA_FILES) |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 45 | GENERATED_DATA_FILES += $(GENERATED_MBEDTLS_CONFIG_DATA_FILES) |
| 46 | GENERATED_CRYPTO_DATA_FILES += $(GENERATED_PSA_CONFIG_DATA_FILES) |
Gilles Peskine | e154e6f | 2024-05-23 16:31:22 +0200 | [diff] [blame] | 47 | |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 48 | GENERATED_ECP_DATA_FILES := $(addprefix ../tf-psa-crypto/,$(shell \ |
David Horstmann | f6f3bca | 2024-05-29 17:57:08 +0100 | [diff] [blame] | 49 | $(PYTHON) ../framework/scripts/generate_ecp_tests.py --list || \ |
Gabor Mezei | 95ecaaf | 2023-01-16 16:53:29 +0100 | [diff] [blame] | 50 | echo FAILED \ |
| 51 | )) |
| 52 | ifeq ($(GENERATED_ECP_DATA_FILES),FAILED) |
David Horstmann | f6f3bca | 2024-05-29 17:57:08 +0100 | [diff] [blame] | 53 | $(error "$(PYTHON) ../framework/scripts/generate_ecp_tests.py --list" failed) |
Gabor Mezei | 95ecaaf | 2023-01-16 16:53:29 +0100 | [diff] [blame] | 54 | endif |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 55 | GENERATED_CRYPTO_DATA_FILES += $(GENERATED_ECP_DATA_FILES) |
Gilles Peskine | b0aa75e | 2024-05-23 16:38:07 +0200 | [diff] [blame] | 56 | |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 57 | GENERATED_PSA_DATA_FILES := $(addprefix ../tf-psa-crypto/,$(shell \ |
David Horstmann | f6f3bca | 2024-05-29 17:57:08 +0100 | [diff] [blame] | 58 | $(PYTHON) ../framework/scripts/generate_psa_tests.py --list || \ |
Gilles Peskine | e9ad95a | 2021-07-13 18:36:05 +0200 | [diff] [blame] | 59 | echo FAILED \ |
| 60 | )) |
Werner Lewis | 8b2df74 | 2022-07-08 13:54:57 +0100 | [diff] [blame] | 61 | ifeq ($(GENERATED_PSA_DATA_FILES),FAILED) |
David Horstmann | f6f3bca | 2024-05-29 17:57:08 +0100 | [diff] [blame] | 62 | $(error "$(PYTHON) ../framework/scripts/generate_psa_tests.py --list" failed) |
Gilles Peskine | e9ad95a | 2021-07-13 18:36:05 +0200 | [diff] [blame] | 63 | endif |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 64 | GENERATED_CRYPTO_DATA_FILES += $(GENERATED_PSA_DATA_FILES) |
Gilles Peskine | b0aa75e | 2024-05-23 16:38:07 +0200 | [diff] [blame] | 65 | |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 66 | GENERATED_FILES = $(GENERATED_DATA_FILES) $(GENERATED_CRYPTO_DATA_FILES) |
Ronald Cron | 99226e9 | 2025-02-14 15:43:22 +0100 | [diff] [blame] | 67 | GENERATED_FILES += include/test/test_keys.h \ |
| 68 | ../tf-psa-crypto/tests/include/test/test_keys.h \ |
| 69 | include/test/test_certs.h |
Gilles Peskine | b0aa75e | 2024-05-23 16:38:07 +0200 | [diff] [blame] | 70 | |
Gilles Peskine | 870ed2a | 2024-09-25 10:27:47 +0200 | [diff] [blame] | 71 | # Generated files needed to (fully) run ssl-opt.sh |
| 72 | .PHONY: ssl-opt |
| 73 | |
Gilles Peskine | 4773333 | 2025-03-01 14:28:20 +0100 | [diff] [blame] | 74 | opt-testcases/handshake-generated.sh: ../framework/scripts/mbedtls_framework/tls_test_case.py |
| 75 | opt-testcases/handshake-generated.sh: ../framework/scripts/generate_tls_handshake_tests.py |
| 76 | echo " Gen $@" |
| 77 | $(PYTHON) ../framework/scripts/generate_tls_handshake_tests.py -o $@ |
| 78 | GENERATED_FILES += opt-testcases/handshake-generated.sh |
| 79 | ssl-opt: opt-testcases/handshake-generated.sh |
| 80 | |
Elena Uziunaite | b74c3ea | 2024-10-08 13:02:48 +0100 | [diff] [blame] | 81 | opt-testcases/tls13-compat.sh: ../framework/scripts/generate_tls13_compat_tests.py |
Gilles Peskine | 907e495 | 2024-09-19 19:09:33 +0200 | [diff] [blame] | 82 | echo " Gen $@" |
Elena Uziunaite | b74c3ea | 2024-10-08 13:02:48 +0100 | [diff] [blame] | 83 | $(PYTHON) ../framework/scripts/generate_tls13_compat_tests.py -o $@ |
Gilles Peskine | 3943a1a | 2024-09-13 15:57:44 +0200 | [diff] [blame] | 84 | GENERATED_FILES += opt-testcases/tls13-compat.sh |
Gilles Peskine | 870ed2a | 2024-09-25 10:27:47 +0200 | [diff] [blame] | 85 | ssl-opt: opt-testcases/tls13-compat.sh |
Gilles Peskine | 3943a1a | 2024-09-13 15:57:44 +0200 | [diff] [blame] | 86 | |
Gilles Peskine | b0aa75e | 2024-05-23 16:38:07 +0200 | [diff] [blame] | 87 | .PHONY: generated_files |
| 88 | generated_files: $(GENERATED_FILES) |
Gilles Peskine | 687d1ab | 2021-04-22 01:01:56 +0200 | [diff] [blame] | 89 | |
Werner Lewis | 8b2df74 | 2022-07-08 13:54:57 +0100 | [diff] [blame] | 90 | # generate_bignum_tests.py and generate_psa_tests.py spend more time analyzing |
| 91 | # inputs than generating outputs. Its inputs are the same no matter which files |
| 92 | # are being generated. |
Gilles Peskine | 5df77c6 | 2021-07-13 17:22:58 +0200 | [diff] [blame] | 93 | # It's rare not to want all the outputs. So always generate all of its outputs. |
| 94 | # Use an intermediate phony dependency so that parallel builds don't run |
| 95 | # a separate instance of the recipe for each output file. |
Gilles Peskine | 0b62b7a | 2023-09-08 16:19:13 +0200 | [diff] [blame] | 96 | $(GENERATED_BIGNUM_DATA_FILES): $(gen_file_dep) generated_bignum_test_data |
David Horstmann | f6f3bca | 2024-05-29 17:57:08 +0100 | [diff] [blame] | 97 | generated_bignum_test_data: ../framework/scripts/generate_bignum_tests.py |
David Horstmann | cd84bb2 | 2024-05-03 14:36:12 +0100 | [diff] [blame] | 98 | generated_bignum_test_data: ../framework/scripts/mbedtls_framework/bignum_common.py |
| 99 | generated_bignum_test_data: ../framework/scripts/mbedtls_framework/bignum_core.py |
| 100 | generated_bignum_test_data: ../framework/scripts/mbedtls_framework/bignum_mod_raw.py |
| 101 | generated_bignum_test_data: ../framework/scripts/mbedtls_framework/bignum_mod.py |
| 102 | generated_bignum_test_data: ../framework/scripts/mbedtls_framework/test_case.py |
| 103 | generated_bignum_test_data: ../framework/scripts/mbedtls_framework/test_data_generation.py |
Werner Lewis | 8b2df74 | 2022-07-08 13:54:57 +0100 | [diff] [blame] | 104 | generated_bignum_test_data: |
| 105 | echo " Gen $(GENERATED_BIGNUM_DATA_FILES)" |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 106 | $(PYTHON) ../framework/scripts/generate_bignum_tests.py --directory ../tf-psa-crypto/tests/suites |
Gilles Peskine | b0aa75e | 2024-05-23 16:38:07 +0200 | [diff] [blame] | 107 | .SECONDARY: generated_bignum_test_data |
Werner Lewis | 8b2df74 | 2022-07-08 13:54:57 +0100 | [diff] [blame] | 108 | |
Gilles Peskine | e154e6f | 2024-05-23 16:31:22 +0200 | [diff] [blame] | 109 | # We deliberately omit the configuration files (mbedtls_config.h, |
| 110 | # crypto_config.h) from the depenency list because during development |
| 111 | # and on the CI, we often edit those in a way that doesn't change the |
| 112 | # output, to comment out certain options, or even to remove certain |
| 113 | # lines which do affect the output negatively (it will miss the |
| 114 | # corresponding test cases). |
| 115 | $(GENERATED_CONFIG_DATA_FILES): $(gen_file_dep) generated_config_test_data |
| 116 | generated_config_test_data: ../framework/scripts/generate_config_tests.py |
| 117 | generated_config_test_data: ../scripts/config.py |
| 118 | generated_config_test_data: ../framework/scripts/mbedtls_framework/test_case.py |
| 119 | generated_config_test_data: ../framework/scripts/mbedtls_framework/test_data_generation.py |
| 120 | generated_config_test_data: |
| 121 | echo " Gen $(GENERATED_CONFIG_DATA_FILES)" |
Ronald Cron | 81a674e | 2025-03-11 12:53:45 +0100 | [diff] [blame] | 122 | $(PYTHON) ../framework/scripts/generate_config_tests.py |
| 123 | cd ../tf-psa-crypto && $(PYTHON) ./framework/scripts/generate_config_tests.py |
Gilles Peskine | e154e6f | 2024-05-23 16:31:22 +0200 | [diff] [blame] | 124 | .SECONDARY: generated_config_test_data |
Werner Lewis | 8b2df74 | 2022-07-08 13:54:57 +0100 | [diff] [blame] | 125 | |
Gilles Peskine | 0b62b7a | 2023-09-08 16:19:13 +0200 | [diff] [blame] | 126 | $(GENERATED_ECP_DATA_FILES): $(gen_file_dep) generated_ecp_test_data |
David Horstmann | f6f3bca | 2024-05-29 17:57:08 +0100 | [diff] [blame] | 127 | generated_ecp_test_data: ../framework/scripts/generate_ecp_tests.py |
David Horstmann | cd84bb2 | 2024-05-03 14:36:12 +0100 | [diff] [blame] | 128 | generated_ecp_test_data: ../framework/scripts/mbedtls_framework/bignum_common.py |
| 129 | generated_ecp_test_data: ../framework/scripts/mbedtls_framework/ecp.py |
| 130 | generated_ecp_test_data: ../framework/scripts/mbedtls_framework/test_case.py |
| 131 | generated_ecp_test_data: ../framework/scripts/mbedtls_framework/test_data_generation.py |
Gabor Mezei | 95ecaaf | 2023-01-16 16:53:29 +0100 | [diff] [blame] | 132 | generated_ecp_test_data: |
| 133 | echo " Gen $(GENERATED_ECP_DATA_FILES)" |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 134 | $(PYTHON) ../framework/scripts/generate_ecp_tests.py --directory ../tf-psa-crypto/tests/suites |
Gilles Peskine | b0aa75e | 2024-05-23 16:38:07 +0200 | [diff] [blame] | 135 | .SECONDARY: generated_ecp_test_data |
Gabor Mezei | 95ecaaf | 2023-01-16 16:53:29 +0100 | [diff] [blame] | 136 | |
Gilles Peskine | 0b62b7a | 2023-09-08 16:19:13 +0200 | [diff] [blame] | 137 | $(GENERATED_PSA_DATA_FILES): $(gen_file_dep) generated_psa_test_data |
David Horstmann | f6f3bca | 2024-05-29 17:57:08 +0100 | [diff] [blame] | 138 | generated_psa_test_data: ../framework/scripts/generate_psa_tests.py |
David Horstmann | cd84bb2 | 2024-05-03 14:36:12 +0100 | [diff] [blame] | 139 | generated_psa_test_data: ../framework/scripts/mbedtls_framework/crypto_data_tests.py |
| 140 | generated_psa_test_data: ../framework/scripts/mbedtls_framework/crypto_knowledge.py |
| 141 | generated_psa_test_data: ../framework/scripts/mbedtls_framework/macro_collector.py |
| 142 | generated_psa_test_data: ../framework/scripts/mbedtls_framework/psa_information.py |
| 143 | generated_psa_test_data: ../framework/scripts/mbedtls_framework/psa_storage.py |
Gilles Peskine | a074fe4 | 2024-12-17 18:54:12 +0100 | [diff] [blame] | 144 | generated_psa_test_data: ../framework/scripts/mbedtls_framework/psa_test_case.py |
David Horstmann | cd84bb2 | 2024-05-03 14:36:12 +0100 | [diff] [blame] | 145 | generated_psa_test_data: ../framework/scripts/mbedtls_framework/test_case.py |
| 146 | generated_psa_test_data: ../framework/scripts/mbedtls_framework/test_data_generation.py |
Gilles Peskine | 1411c7c | 2021-04-22 14:50:16 +0200 | [diff] [blame] | 147 | ## The generated file only depends on the options that are present in |
| 148 | ## crypto_config.h, not on which options are set. To avoid regenerating this |
| 149 | ## file all the time when switching between configurations, don't declare |
| 150 | ## crypto_config.h as a dependency. Remove this file from your working tree |
| 151 | ## if you've just added or removed an option in crypto_config.h. |
Ronald Cron | c7e9e36 | 2024-06-10 09:41:49 +0200 | [diff] [blame] | 152 | #generated_psa_test_data: ../tf-psa-crypto/include/psa/crypto_config.h |
| 153 | generated_psa_test_data: ../tf-psa-crypto/include/psa/crypto_values.h |
| 154 | generated_psa_test_data: ../tf-psa-crypto/include/psa/crypto_extra.h |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 155 | generated_psa_test_data: ../tf-psa-crypto/tests/suites/test_suite_psa_crypto_metadata.data |
Gilles Peskine | 5df77c6 | 2021-07-13 17:22:58 +0200 | [diff] [blame] | 156 | generated_psa_test_data: |
Werner Lewis | 8b2df74 | 2022-07-08 13:54:57 +0100 | [diff] [blame] | 157 | echo " Gen $(GENERATED_PSA_DATA_FILES) ..." |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 158 | $(PYTHON) ../framework/scripts/generate_psa_tests.py --directory ../tf-psa-crypto/tests/suites |
Gilles Peskine | b0aa75e | 2024-05-23 16:38:07 +0200 | [diff] [blame] | 159 | .SECONDARY: generated_psa_test_data |
Gilles Peskine | 687d1ab | 2021-04-22 01:01:56 +0200 | [diff] [blame] | 160 | |
Azim Khan | 27a35e7 | 2018-06-29 12:39:19 +0100 | [diff] [blame] | 161 | # A test application is built for each suites/test_suite_*.data file. |
| 162 | # Application name is same as .data file's base name and can be |
| 163 | # constructed by stripping path 'suites/' and extension .data. |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 164 | DATA_FILES = $(filter-out $(GENERATED_DATA_FILES), $(wildcard suites/test_suite_*.data)) |
| 165 | CRYPTO_DATA_FILES = $(filter-out $(GENERATED_CRYPTO_DATA_FILES), $(wildcard ../tf-psa-crypto/tests/suites/test_suite_*.data)) |
| 166 | |
Gilles Peskine | 687d1ab | 2021-04-22 01:01:56 +0200 | [diff] [blame] | 167 | # Make sure that generated data files are included even if they don't |
| 168 | # exist yet when the makefile is parsed. |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 169 | DATA_FILES += $(GENERATED_DATA_FILES) |
| 170 | CRYPTO_DATA_FILES += $(GENERATED_CRYPTO_DATA_FILES) |
| 171 | |
Gilles Peskine | 687d1ab | 2021-04-22 01:01:56 +0200 | [diff] [blame] | 172 | APPS = $(basename $(subst suites/,,$(DATA_FILES))) |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 173 | CRYPTO_APPS = $(basename $(subst suites/,,$(CRYPTO_DATA_FILES))) |
Mohammad Azim Khan | 94aefaf | 2017-03-23 12:32:54 +0000 | [diff] [blame] | 174 | |
Azim Khan | 27a35e7 | 2018-06-29 12:39:19 +0100 | [diff] [blame] | 175 | # Construct executable name by adding OS specific suffix $(EXEXT). |
Mohammad Azim Khan | 94aefaf | 2017-03-23 12:32:54 +0000 | [diff] [blame] | 176 | BINARIES := $(addsuffix $(EXEXT),$(APPS)) |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 177 | CRYPTO_BINARIES := $(addsuffix $(EXEXT),$(CRYPTO_APPS)) |
Mohammad Azim Khan | 94aefaf | 2017-03-23 12:32:54 +0000 | [diff] [blame] | 178 | |
Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 179 | .SILENT: |
| 180 | |
Manuel Pégourié-Gonnard | 5c59a4f | 2015-06-24 13:06:24 +0200 | [diff] [blame] | 181 | .PHONY: all check test clean |
| 182 | |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 183 | all: $(BINARIES) $(CRYPTO_BINARIES) |
Azim Khan | 1de892b | 2017-06-09 15:02:36 +0100 | [diff] [blame] | 184 | |
Ronald Cron | ddaf99c | 2020-06-19 11:27:26 +0200 | [diff] [blame] | 185 | mbedtls_test: $(MBEDTLS_TEST_OBJS) |
| 186 | |
Ronald Cron | 99226e9 | 2025-02-14 15:43:22 +0100 | [diff] [blame] | 187 | include/test/test_certs.h: ../framework/scripts/generate_test_cert_macros.py \ |
David Horstmann | f6f3bca | 2024-05-29 17:57:08 +0100 | [diff] [blame] | 188 | $($(PYTHON) ../framework/scripts/generate_test_cert_macros.py --list-dependencies) |
Gilles Peskine | 907e495 | 2024-09-19 19:09:33 +0200 | [diff] [blame] | 189 | echo " Gen $@" |
David Horstmann | f6f3bca | 2024-05-29 17:57:08 +0100 | [diff] [blame] | 190 | $(PYTHON) ../framework/scripts/generate_test_cert_macros.py --output $@ |
Valerio Setti | 8284f3d | 2024-04-08 17:52:12 +0200 | [diff] [blame] | 191 | |
Ronald Cron | 99226e9 | 2025-02-14 15:43:22 +0100 | [diff] [blame] | 192 | include/test/test_keys.h: ../framework/scripts/generate_test_keys.py |
Gilles Peskine | 907e495 | 2024-09-19 19:09:33 +0200 | [diff] [blame] | 193 | echo " Gen $@" |
David Horstmann | f6f3bca | 2024-05-29 17:57:08 +0100 | [diff] [blame] | 194 | $(PYTHON) ../framework/scripts/generate_test_keys.py --output $@ |
Valerio Setti | 8284f3d | 2024-04-08 17:52:12 +0200 | [diff] [blame] | 195 | |
Ronald Cron | 99226e9 | 2025-02-14 15:43:22 +0100 | [diff] [blame] | 196 | ../tf-psa-crypto/tests/include/test/test_keys.h: ../tf-psa-crypto/framework/scripts/generate_test_keys.py |
Ronald Cron | 27a1ac7 | 2024-12-12 11:04:03 +0100 | [diff] [blame] | 197 | echo " Gen $@" |
| 198 | $(PYTHON) ../tf-psa-crypto/framework/scripts/generate_test_keys.py --output $@ |
| 199 | |
Gilles Peskine | e1d51bd | 2021-01-20 19:47:23 +0100 | [diff] [blame] | 200 | TEST_OBJS_DEPS = $(wildcard include/test/*.h include/test/*/*.h) |
Gilles Peskine | d71539f | 2020-11-25 18:17:17 +0100 | [diff] [blame] | 201 | ifdef RECORD_PSA_STATUS_COVERAGE_LOG |
Gilles Peskine | 75829a4 | 2021-01-25 13:46:14 +0100 | [diff] [blame] | 202 | # Explicitly depend on this header because on a clean copy of the source tree, |
| 203 | # it doesn't exist yet and must be generated as part of the build, and |
| 204 | # therefore the wildcard enumeration above doesn't include it. |
David Horstmann | d962680 | 2024-11-08 10:59:21 +0000 | [diff] [blame] | 205 | TEST_OBJS_DEPS += ../framework/tests/include/test/instrument_record_status.h |
Gilles Peskine | d71539f | 2020-11-25 18:17:17 +0100 | [diff] [blame] | 206 | endif |
Ronald Cron | 99226e9 | 2025-02-14 15:43:22 +0100 | [diff] [blame] | 207 | TEST_OBJS_DEPS += include/test/test_certs.h include/test/test_keys.h \ |
| 208 | ../tf-psa-crypto/tests/include/test/test_keys.h |
Gilles Peskine | d71539f | 2020-11-25 18:17:17 +0100 | [diff] [blame] | 209 | |
David Horstmann | 69b12ee | 2024-11-05 14:45:50 +0000 | [diff] [blame] | 210 | # Rule to compile common test C files in framework |
| 211 | ../framework/tests/src/%.o : ../framework/tests/src/%.c $(TEST_OBJS_DEPS) |
Ronald Cron | b6d6d4c | 2020-06-03 10:11:18 +0200 | [diff] [blame] | 212 | echo " CC $<" |
| 213 | $(CC) $(LOCAL_CFLAGS) $(CFLAGS) -o $@ -c $< |
| 214 | |
David Horstmann | 69b12ee | 2024-11-05 14:45:50 +0000 | [diff] [blame] | 215 | ../framework/tests/src/drivers/%.o : ../framework/tests/src/drivers/%.c |
| 216 | echo " CC $<" |
| 217 | $(CC) $(LOCAL_CFLAGS) $(CFLAGS) -o $@ -c $< |
| 218 | |
| 219 | # Rule to compile common test C files in src folder |
| 220 | src/%.o : src/%.c $(TEST_OBJS_DEPS) |
Steven Cooreman | a70d588 | 2020-07-16 20:26:18 +0200 | [diff] [blame] | 221 | echo " CC $<" |
| 222 | $(CC) $(LOCAL_CFLAGS) $(CFLAGS) -o $@ -c $< |
| 223 | |
Yanray Wang | b458b8c | 2022-10-28 11:49:33 +0800 | [diff] [blame] | 224 | src/test_helpers/%.o : src/test_helpers/%.c |
| 225 | echo " CC $<" |
| 226 | $(CC) $(LOCAL_CFLAGS) $(CFLAGS) -o $@ -c $< |
| 227 | |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 228 | C_FILES := $(addsuffix .c,$(APPS)) $(addsuffix .c,$(CRYPTO_APPS)) |
Gilles Peskine | 1d7cc08 | 2022-11-10 19:50:34 +0100 | [diff] [blame] | 229 | c: $(C_FILES) |
Mohammad Azim Khan | 94aefaf | 2017-03-23 12:32:54 +0000 | [diff] [blame] | 230 | |
Azim Khan | 27a35e7 | 2018-06-29 12:39:19 +0100 | [diff] [blame] | 231 | # Wildcard target for test code generation: |
| 232 | # A .c file is generated for each .data file in the suites/ directory. Each .c |
| 233 | # file depends on a .data and .function file from suites/ directory. Following |
| 234 | # nameing convention is followed: |
| 235 | # |
| 236 | # C file | Depends on |
| 237 | #----------------------------------------------------------------------------- |
| 238 | # foo.c | suites/foo.function suites/foo.data |
| 239 | # foo.bar.c | suites/foo.function suites/foo.bar.data |
| 240 | # |
| 241 | # Note above that .c and .data files have same base name. |
| 242 | # However, corresponding .function file's base name is the word before first |
| 243 | # dot in .c file's base name. |
| 244 | # |
Mohammad Azim Khan | 94aefaf | 2017-03-23 12:32:54 +0000 | [diff] [blame] | 245 | .SECONDEXPANSION: |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 246 | |
Gilles Peskine | 88a6baa | 2024-08-08 14:07:24 +0200 | [diff] [blame] | 247 | # First handle the tf-psa-crypto case, which has different paths from |
| 248 | # the local case. In GNU Make >=3.82, the shortest match applies regardless |
| 249 | # of the order in the makefile. In GNU Make <=3.81, the first matching rule |
| 250 | # applies. |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 251 | ../tf-psa-crypto/tests/%.c: ../tf-psa-crypto/tests/suites/$$(firstword $$(subst ., ,$$*)).function ../tf-psa-crypto/tests/suites/%.data ../framework/scripts/generate_test_code.py ../tf-psa-crypto/tests/suites/helpers.function ../tf-psa-crypto/tests/suites/main_test.function ../tf-psa-crypto/tests/suites/host_test.function |
| 252 | echo " Gen $@" |
| 253 | cd ../tf-psa-crypto/tests && $(PYTHON) ../../framework/scripts/generate_test_code.py -f suites/$(firstword $(subst ., ,$*)).function \ |
| 254 | -d suites/$*.data \ |
Azim Khan | 1de892b | 2017-06-09 15:02:36 +0100 | [diff] [blame] | 255 | -t suites/main_test.function \ |
Mohammad Azim Khan | 9540261 | 2017-07-19 10:15:54 +0100 | [diff] [blame] | 256 | -p suites/host_test.function \ |
Mohammad Azim Khan | fff4904 | 2017-03-28 01:48:31 +0100 | [diff] [blame] | 257 | -s suites \ |
Azim Khan | e3b26af | 2018-06-29 02:36:57 +0100 | [diff] [blame] | 258 | --helpers-file suites/helpers.function \ |
Mohammad Azim Khan | fff4904 | 2017-03-28 01:48:31 +0100 | [diff] [blame] | 259 | -o . |
Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 260 | |
Gilles Peskine | 88a6baa | 2024-08-08 14:07:24 +0200 | [diff] [blame] | 261 | %.c: suites/$$(firstword $$(subst ., ,$$*)).function suites/%.data ../framework/scripts/generate_test_code.py ../tf-psa-crypto/tests/suites/helpers.function ../tf-psa-crypto/tests/suites/main_test.function ../tf-psa-crypto/tests/suites/host_test.function |
| 262 | echo " Gen $@" |
| 263 | $(PYTHON) ../framework/scripts/generate_test_code.py -f suites/$(firstword $(subst ., ,$*)).function \ |
| 264 | -d suites/$*.data \ |
| 265 | -t ../tf-psa-crypto/tests/suites/main_test.function \ |
| 266 | -p ../tf-psa-crypto/tests/suites/host_test.function \ |
| 267 | -s suites \ |
| 268 | --helpers-file ../tf-psa-crypto/tests/suites/helpers.function \ |
| 269 | -o . |
| 270 | |
Gilles Peskine | d71539f | 2020-11-25 18:17:17 +0100 | [diff] [blame] | 271 | $(BINARIES): %$(EXEXT): %.c $(MBEDLIBS) $(TEST_OBJS_DEPS) $(MBEDTLS_TEST_OBJS) |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 272 | echo " CC $<" |
Gilles Peskine | 4ad5733 | 2023-12-22 11:30:30 +0100 | [diff] [blame] | 273 | $(CC) $(LOCAL_CFLAGS) $(CFLAGS) $< $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@ |
Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 274 | |
David Horstmann | 1b457a9 | 2024-11-04 15:53:42 +0000 | [diff] [blame] | 275 | LOCAL_CRYPTO_CFLAGS = $(patsubst -I./include, -I../../tests/include, $(patsubst -I../%,-I../../%, $(LOCAL_CFLAGS))) |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 276 | LOCAL_CRYPTO_LDFLAGS = $(patsubst -L../library, -L../../library, \ |
| 277 | $(patsubst -L../tests/%, -L../../tests/%, \ |
David Horstmann | cbab2ff | 2024-11-05 15:10:56 +0000 | [diff] [blame] | 278 | $(patsubst ./src/%,../../tests/src/%, \ |
David Horstmann | ed91f88 | 2024-11-19 17:15:30 +0000 | [diff] [blame] | 279 | $(patsubst ../framework/tests/src/%,../../framework/tests/src/%, \ |
David Horstmann | cbab2ff | 2024-11-05 15:10:56 +0000 | [diff] [blame] | 280 | $(LOCAL_LDFLAGS))))) |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 281 | $(CRYPTO_BINARIES): %$(EXEXT): %.c $(MBEDLIBS) $(TEST_OBJS_DEPS) $(MBEDTLS_TEST_OBJS) |
| 282 | echo " CC $<" |
| 283 | cd ../tf-psa-crypto/tests && $(CC) $(LOCAL_CRYPTO_CFLAGS) $(CFLAGS) $(subst $(EXEXT),,$(@F)).c $(LOCAL_CRYPTO_LDFLAGS) $(LDFLAGS) -o $(@F) |
| 284 | |
Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 285 | clean: |
Paul Bakker | 62f88dc | 2012-05-10 21:26:28 +0000 | [diff] [blame] | 286 | ifndef WINDOWS |
Valerio Setti | 0917265 | 2024-06-27 08:00:54 +0200 | [diff] [blame] | 287 | $(MAKE) -C psa-client-server/psasim clean |
Gilles Peskine | d025422 | 2021-09-14 11:28:22 +0200 | [diff] [blame] | 288 | rm -rf $(BINARIES) *.c *.datax |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 289 | rm -rf $(CRYPTO_BINARIES) ../tf-psa-crypto/tests/*.c ../tf-psa-crypto/tests/*.datax |
David Horstmann | 8a8d56a | 2024-11-06 15:53:14 +0000 | [diff] [blame] | 290 | rm -f src/*.o src/test_helpers/*.o src/libmbed* |
| 291 | rm -f ../framework/tests/src/*.o ../framework/tests/src/drivers/*.o |
David Horstmann | 0771253 | 2024-11-13 10:45:42 +0000 | [diff] [blame] | 292 | rm -f ../framework/tests/include/test/instrument_record_status.h |
David Horstmann | dc45951 | 2024-11-07 17:08:11 +0000 | [diff] [blame] | 293 | rm -f ../framework/tests/include/alt-extra/*/*_alt.h |
Ronald Cron | 72b25da | 2021-04-28 18:29:24 +0200 | [diff] [blame] | 294 | rm -rf libtestdriver1 |
Valerio Setti | d1b6ef1 | 2024-05-07 16:00:21 +0200 | [diff] [blame] | 295 | rm -rf libpsaclient libpsaserver |
Manuel Pégourié-Gonnard | 8510105 | 2022-12-29 16:04:35 +0100 | [diff] [blame] | 296 | rm -f ../library/libtestdriver1.a |
Manuel Pégourié-Gonnard | 5c59a4f | 2015-06-24 13:06:24 +0200 | [diff] [blame] | 297 | else |
Darryl Green | 6c0f94c | 2018-10-17 16:12:33 +0100 | [diff] [blame] | 298 | if exist *.c del /Q /F *.c |
| 299 | if exist *.exe del /Q /F *.exe |
| 300 | if exist *.datax del /Q /F *.datax |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 301 | if exist ../tf-psa-crypto/tests/*.c del /Q /F ../tf-psa-crypto/tests/*.c |
| 302 | if exist ../tf-psa-crypto/tests/*.exe del /Q /F ../tf-psa-crypto/tests/*.exe |
| 303 | if exist ../tf-psa-crypto/tests/*.datax del /Q /F ../tf-psa-crypto/tests/*.datax |
Ronald Cron | b6d6d4c | 2020-06-03 10:11:18 +0200 | [diff] [blame] | 304 | if exist src/*.o del /Q /F src/*.o |
Yanray Wang | b458b8c | 2022-10-28 11:49:33 +0800 | [diff] [blame] | 305 | if exist src/test_helpers/*.o del /Q /F src/test_helpers/*.o |
David Horstmann | dcc78ee | 2024-08-28 16:28:46 +0100 | [diff] [blame] | 306 | if exist src/libmbed* del /Q /F src/libmbed* |
David Horstmann | 8a8d56a | 2024-11-06 15:53:14 +0000 | [diff] [blame] | 307 | if exist ../framework/tests/src/*.o del /Q /F ../framework/tests/src/*.o |
| 308 | if exist ../framework/tests/src/drivers/*.o del /Q /F ../framework/tests/src/drivers/*.o |
David Horstmann | 0771253 | 2024-11-13 10:45:42 +0000 | [diff] [blame] | 309 | if exist ../framework/tests/include/test/instrument_record_status.h del /Q /F ../framework/tests/include/test/instrument_record_status.h |
Azim Khan | 27a35e7 | 2018-06-29 12:39:19 +0100 | [diff] [blame] | 310 | endif |
Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 311 | |
Gilles Peskine | ac372cc | 2018-11-29 10:15:06 +0000 | [diff] [blame] | 312 | # Test suites caught by SKIP_TEST_SUITES are built but not executed. |
Ronald Cron | 901a675 | 2024-07-09 14:24:16 +0200 | [diff] [blame] | 313 | check: $(BINARIES) $(CRYPTO_BINARIES) |
Gilles Peskine | 396853a | 2021-09-20 18:57:55 +0200 | [diff] [blame] | 314 | perl scripts/run-test-suites.pl $(TEST_FLAGS) --skip=$(SKIP_TEST_SUITES) |
Manuel Pégourié-Gonnard | 5c59a4f | 2015-06-24 13:06:24 +0200 | [diff] [blame] | 315 | |
| 316 | test: check |
Mohammad Azim Khan | 1f29be7 | 2017-03-20 22:21:22 +0000 | [diff] [blame] | 317 | |
Gilles Peskine | df6e84a | 2023-02-22 22:09:51 +0100 | [diff] [blame] | 318 | # Generate variants of some headers for testing |
David Horstmann | dc45951 | 2024-11-07 17:08:11 +0000 | [diff] [blame] | 319 | ../framework/tests/include/alt-extra/%_alt.h: ../include/%.h |
Gilles Peskine | df6e84a | 2023-02-22 22:09:51 +0100 | [diff] [blame] | 320 | perl -p -e 's/^(# *(define|ifndef) +\w+_)H\b/$${1}ALT_H/' $< >$@ |
David Horstmann | dc45951 | 2024-11-07 17:08:11 +0000 | [diff] [blame] | 321 | ../framework/tests/include/alt-extra/%_alt.h: ../tf-psa-crypto/include/%.h |
Ronald Cron | c7e9e36 | 2024-06-10 09:41:49 +0200 | [diff] [blame] | 322 | perl -p -e 's/^(# *(define|ifndef) +\w+_)H\b/$${1}ALT_H/' $< >$@ |
David Horstmann | dc45951 | 2024-11-07 17:08:11 +0000 | [diff] [blame] | 323 | ../framework/tests/include/alt-extra/%_alt.h: ../tf-psa-crypto/drivers/builtin/include/%.h |
Ronald Cron | 3d817ad | 2024-06-14 08:43:28 +0200 | [diff] [blame] | 324 | perl -p -e 's/^(# *(define|ifndef) +\w+_)H\b/$${1}ALT_H/' $< >$@ |
Gilles Peskine | df6e84a | 2023-02-22 22:09:51 +0100 | [diff] [blame] | 325 | |
Ronald Cron | 72b25da | 2021-04-28 18:29:24 +0200 | [diff] [blame] | 326 | # Generate test library |
Ronald Cron | 72b25da | 2021-04-28 18:29:24 +0200 | [diff] [blame] | 327 | libtestdriver1.a: |
Ronald Cron | 72b25da | 2021-04-28 18:29:24 +0200 | [diff] [blame] | 328 | rm -Rf ./libtestdriver1 |
| 329 | mkdir ./libtestdriver1 |
Ronald Cron | cec78c3 | 2024-12-05 11:01:06 +0100 | [diff] [blame] | 330 | mkdir ./libtestdriver1/framework |
Ronald Cron | 4cc77a1 | 2024-07-02 08:52:26 +0200 | [diff] [blame] | 331 | mkdir ./libtestdriver1/tf-psa-crypto |
| 332 | mkdir ./libtestdriver1/tf-psa-crypto/drivers |
| 333 | mkdir ./libtestdriver1/tf-psa-crypto/drivers/everest |
| 334 | mkdir ./libtestdriver1/tf-psa-crypto/drivers/p256-m |
| 335 | touch ./libtestdriver1/tf-psa-crypto/drivers/everest/Makefile.inc |
| 336 | touch ./libtestdriver1/tf-psa-crypto/drivers/p256-m/Makefile.inc |
Ronald Cron | cec78c3 | 2024-12-05 11:01:06 +0100 | [diff] [blame] | 337 | cp -Rf ../framework/scripts ./libtestdriver1/framework |
Ronald Cron | 72b25da | 2021-04-28 18:29:24 +0200 | [diff] [blame] | 338 | cp -Rf ../library ./libtestdriver1 |
| 339 | cp -Rf ../include ./libtestdriver1 |
Ronald Cron | 6a2cbe7 | 2024-11-13 09:20:30 +0100 | [diff] [blame] | 340 | cp -Rf ../scripts ./libtestdriver1 |
Ronald Cron | 4cc77a1 | 2024-07-02 08:52:26 +0200 | [diff] [blame] | 341 | cp -Rf ../tf-psa-crypto/core ./libtestdriver1/tf-psa-crypto |
| 342 | cp -Rf ../tf-psa-crypto/include ./libtestdriver1/tf-psa-crypto |
| 343 | cp -Rf ../tf-psa-crypto/drivers/builtin ./libtestdriver1/tf-psa-crypto/drivers |
Ronald Cron | 6a2cbe7 | 2024-11-13 09:20:30 +0100 | [diff] [blame] | 344 | cp -Rf ../tf-psa-crypto/scripts ./libtestdriver1/tf-psa-crypto |
Ronald Cron | 72b25da | 2021-04-28 18:29:24 +0200 | [diff] [blame] | 345 | |
| 346 | # Set the test driver base (minimal) configuration. |
Ronald Cron | e0ebf55 | 2024-11-19 14:59:09 +0100 | [diff] [blame] | 347 | cp ../tf-psa-crypto/tests/configs/config_test_driver.h ./libtestdriver1/include/mbedtls/mbedtls_config.h |
Minos Galanakis | 23452f5 | 2024-11-28 17:48:14 +0000 | [diff] [blame] | 348 | cp ../tf-psa-crypto/tests/configs/crypto_config_test_driver.h ./libtestdriver1/tf-psa-crypto/include/psa/crypto_config.h |
Ronald Cron | 72b25da | 2021-04-28 18:29:24 +0200 | [diff] [blame] | 349 | |
| 350 | # Set the PSA cryptography configuration for the test library. |
Minos Galanakis | 23452f5 | 2024-11-28 17:48:14 +0000 | [diff] [blame] | 351 | # The configuration is created by joining the base |
| 352 | # ../tf-psa-crypto/tests/configs/crypto_config_test_driver.h, |
| 353 | # with the the library's PSA_WANT_* macros extracted from |
| 354 | # ./tf-psa-crypto/include/psa/crypto_config.h |
| 355 | # and then extended with entries of |
| 356 | # ../tf-psa-crypto/tests/configs/crypto_config_test_driver_extension.h |
| 357 | # to mirror the PSA_ACCEL_* macros. |
| 358 | |
Ronald Cron | 1451a76 | 2024-06-10 16:02:04 +0200 | [diff] [blame] | 359 | mv ./libtestdriver1/tf-psa-crypto/include/psa/crypto_config.h ./libtestdriver1/tf-psa-crypto/include/psa/crypto_config.h.bak |
| 360 | head -n -1 ./libtestdriver1/tf-psa-crypto/include/psa/crypto_config.h.bak > ./libtestdriver1/tf-psa-crypto/include/psa/crypto_config.h |
Minos Galanakis | 23452f5 | 2024-11-28 17:48:14 +0000 | [diff] [blame] | 361 | grep '^#define PSA_WANT_*' ../tf-psa-crypto/include/psa/crypto_config.h >> ./libtestdriver1/tf-psa-crypto/include/psa/crypto_config.h |
Ronald Cron | e0ebf55 | 2024-11-19 14:59:09 +0100 | [diff] [blame] | 362 | cat ../tf-psa-crypto/tests/configs/crypto_config_test_driver_extension.h >> ./libtestdriver1/tf-psa-crypto/include/psa/crypto_config.h |
Ronald Cron | 1451a76 | 2024-06-10 16:02:04 +0200 | [diff] [blame] | 363 | echo "#endif /* PSA_CRYPTO_CONFIG_H */" >> ./libtestdriver1/tf-psa-crypto/include/psa/crypto_config.h |
Ronald Cron | 72b25da | 2021-04-28 18:29:24 +0200 | [diff] [blame] | 364 | |
| 365 | # Prefix MBEDTLS_* PSA_* symbols with LIBTESTDRIVER1_ as well as |
| 366 | # mbedtls_* psa_* symbols with libtestdriver1_ to avoid symbol clash |
| 367 | # when this test driver library is linked with the Mbed TLS library. |
Felix Conway | 1ef121c | 2025-04-09 09:51:13 +0100 | [diff] [blame] | 368 | perl -i ./scripts/libtestdriver1_rewrite.pl ./libtestdriver1/library/*.[ch] |
| 369 | perl -i ./scripts/libtestdriver1_rewrite.pl ./libtestdriver1/include/*/*.h |
| 370 | perl -i ./scripts/libtestdriver1_rewrite.pl ./libtestdriver1/tf-psa-crypto/core/*.[ch] |
| 371 | perl -i ./scripts/libtestdriver1_rewrite.pl ./libtestdriver1/tf-psa-crypto/include/*/*.h |
| 372 | perl -i ./scripts/libtestdriver1_rewrite.pl ./libtestdriver1/tf-psa-crypto/drivers/builtin/include/*/*.h |
| 373 | perl -i ./scripts/libtestdriver1_rewrite.pl ./libtestdriver1/tf-psa-crypto/drivers/builtin/src/*.[ch] |
Ronald Cron | 72b25da | 2021-04-28 18:29:24 +0200 | [diff] [blame] | 374 | |
| 375 | $(MAKE) -C ./libtestdriver1/library CFLAGS="-I../../ $(CFLAGS)" LDFLAGS="$(LDFLAGS)" libmbedcrypto.a |
| 376 | cp ./libtestdriver1/library/libmbedcrypto.a ../library/libtestdriver1.a |
| 377 | |
Gilles Peskine | 5168155 | 2019-05-20 19:35:37 +0200 | [diff] [blame] | 378 | ifdef RECORD_PSA_STATUS_COVERAGE_LOG |
David Horstmann | d962680 | 2024-11-08 10:59:21 +0000 | [diff] [blame] | 379 | ../framework/tests/include/test/instrument_record_status.h: ../tf-psa-crypto/include/psa/crypto.h Makefile |
Gilles Peskine | d71539f | 2020-11-25 18:17:17 +0100 | [diff] [blame] | 380 | echo " Gen $@" |
Ronald Cron | c7e9e36 | 2024-06-10 09:41:49 +0200 | [diff] [blame] | 381 | sed <../tf-psa-crypto/include/psa/crypto.h >$@ -n 's/^psa_status_t \([A-Za-z0-9_]*\)(.*/#define \1(...) RECORD_STATUS("\1", \1(__VA_ARGS__))/p' |
Gilles Peskine | 5168155 | 2019-05-20 19:35:37 +0200 | [diff] [blame] | 382 | endif |