summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorVadim Sukhomlinov <sukhomlinov@google.com>2019-11-12 13:12:59 -0800
committerCommit Bot <commit-bot@chromium.org>2019-11-13 02:43:50 +0000
commit977c1267c00389de296cc7bdcf946badef4601aa (patch)
tree9762ba4fac6ca44bad8c4418f444f12ecd7c14b0 /test
parent697a07fa83fedb9109ff207685ef6eb32504de09 (diff)
downloadchrome-ec-977c1267c00389de296cc7bdcf946badef4601aa.tar.gz
tpmtest.py: update Makefile to correct build of ftdi_spi_tpm
make of ftdi_spi_tpm fails: ../../include/config.h:4878:25: fatal error: fuzz_config.h: No such file or directory #include "fuzz_config.h" It seems issue happened after moving fuzzing tests into a fuzz subfolder in https://chromium-review.googlesource.com/1180179 Added include search path to correct issue. BRANCH=none BUG=none TEST=in test/tpm_test/ make successfully builds ftdi_spi_tpm Change-Id: I0c212ba7f84babd5db0c02d553345769de301d00 Signed-off-by: Vadim Sukhomlinov <sukhomlinov@google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1913325 Reviewed-by: Vadim Sukhomlinov <sukhomlinov@chromium.org> Reviewed-by: Vadim Bendebury <vbendeb@chromium.org> Commit-Queue: Vadim Bendebury <vbendeb@chromium.org> Tested-by: Vadim Bendebury <vbendeb@chromium.org> Auto-Submit: Vadim Sukhomlinov <sukhomlinov@chromium.org>
Diffstat (limited to 'test')
-rw-r--r--test/tpm_test/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/tpm_test/Makefile b/test/tpm_test/Makefile
index eeed4c2650..806dc02d42 100644
--- a/test/tpm_test/Makefile
+++ b/test/tpm_test/Makefile
@@ -28,6 +28,7 @@ CFLAGS += -I../../../../third_party/cryptoc/include
CFLAGS += -I../../board/cr50
CFLAGS += -I../../chip/g
CFLAGS += -I../../chip/g/dcrypto
+CFLAGS += -I../../fuzz
CFLAGS += -I../../include
CFLAGS += -I..
CFLAGS += -I../..