From cde8178af3740aa3c9ac74860567a80898f22bfd Mon Sep 17 00:00:00 2001 From: Jerry Yu Date: Mon, 10 Jul 2023 15:32:51 +0800 Subject: [PATCH] Add xxd for data file regenerating tests Signed-off-by: Jerry Yu --- resources/docker_files/ubuntu-16.04/Dockerfile | 2 ++ resources/docker_files/ubuntu-18.04/Dockerfile | 2 ++ resources/docker_files/ubuntu-20.04/Dockerfile | 2 ++ resources/docker_files/ubuntu-22.04/Dockerfile | 2 ++ 4 files changed, 8 insertions(+) diff --git a/resources/docker_files/ubuntu-16.04/Dockerfile b/resources/docker_files/ubuntu-16.04/Dockerfile index 3ad56e63b..918e4b642 100644 --- a/resources/docker_files/ubuntu-16.04/Dockerfile +++ b/resources/docker_files/ubuntu-16.04/Dockerfile @@ -85,6 +85,8 @@ RUN apt-get update -q && apt-get install -yq \ python3-pip \ # for Mbed TLS tests valgrind \ + # for data files generating. xxd is provide by vim + vim \ # to download things installed from other places wget \ # to build Mbed TLS with MBEDTLS_ZILIB_SUPPORT (removed in 3.0) diff --git a/resources/docker_files/ubuntu-18.04/Dockerfile b/resources/docker_files/ubuntu-18.04/Dockerfile index dc0e3c9ab..8cfaa3e2a 100644 --- a/resources/docker_files/ubuntu-18.04/Dockerfile +++ b/resources/docker_files/ubuntu-18.04/Dockerfile @@ -87,6 +87,8 @@ RUN apt-get update -q && apt-get install -yq \ valgrind \ # to download things installed from other places wget \ + # for data file generating + xxd \ # to build Mbed TLS with MBEDTLS_ZILIB_SUPPORT (removed in 3.0) zlib1g \ # to build Mbed TLS with MBEDTLS_ZILIB_SUPPORT (removed in 3.0) diff --git a/resources/docker_files/ubuntu-20.04/Dockerfile b/resources/docker_files/ubuntu-20.04/Dockerfile index 716b20152..f09b3d37d 100644 --- a/resources/docker_files/ubuntu-20.04/Dockerfile +++ b/resources/docker_files/ubuntu-20.04/Dockerfile @@ -93,6 +93,8 @@ RUN apt-get update -q && apt-get install -yq \ valgrind \ # to download things installed from other places wget \ + # for data file generating + xxd \ # to build Mbed TLS with MBEDTLS_ZILIB_SUPPORT (removed in 3.0) zlib1g \ # to build Mbed TLS with MBEDTLS_ZILIB_SUPPORT (removed in 3.0) diff --git a/resources/docker_files/ubuntu-22.04/Dockerfile b/resources/docker_files/ubuntu-22.04/Dockerfile index 9283042e7..c9d4c4d4a 100644 --- a/resources/docker_files/ubuntu-22.04/Dockerfile +++ b/resources/docker_files/ubuntu-22.04/Dockerfile @@ -93,6 +93,8 @@ RUN apt-get update -q && apt-get install -yq \ valgrind \ # to download things installed from other places wget \ + # for data file generating + xxd \ # to build Mbed TLS with MBEDTLS_ZILIB_SUPPORT (removed in 3.0) zlib1g \ # to build Mbed TLS with MBEDTLS_ZILIB_SUPPORT (removed in 3.0)