From 8fa5562003bae11b78a76c79c04f5c34e1cdf808 Mon Sep 17 00:00:00 2001 From: Jim Norton Date: Thu, 4 Apr 2024 10:34:31 -0400 Subject: [PATCH] Added custom-tlv-string non-regression test to github workflows --- .github/workflows/test-keytools.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test-keytools.yml b/.github/workflows/test-keytools.yml index d739fd891..dc64b5a49 100644 --- a/.github/workflows/test-keytools.yml +++ b/.github/workflows/test-keytools.yml @@ -264,3 +264,9 @@ jobs: ./tools/keytools/sign --ecc256 --sha256 --custom-tlv-buffer 0x46 48656C6C6F20776F726C64 test-app/image.elf wolfboot_signing_private_key.der 3 grep "Hello world" test-app/image_v3_signed.bin + - name: Sign app with custom string TLV included + run: | + ./tools/keytools/sign --ecc256 --sha256 --custom-tlv-string 0x46 "Hello world" test-app/image.elf wolfboot_signing_private_key.der 3 + grep "Hello world" test-app/image_v3_signed.bin + +