From 41b6811f453b97b512bbdbc9cd2983b5edd2d04f Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Wed, 10 Jul 2019 13:20:17 +0200 Subject: [PATCH] unit-test-app: split default, release, single_core configs --- tools/unit-test-app/configs/default | 2 +- tools/unit-test-app/configs/default_2 | 1 + tools/unit-test-app/configs/release | 2 +- tools/unit-test-app/configs/release_2 | 3 +++ tools/unit-test-app/configs/single_core | 2 +- tools/unit-test-app/configs/single_core_2 | 4 ++++ 6 files changed, 11 insertions(+), 3 deletions(-) create mode 100644 tools/unit-test-app/configs/default_2 create mode 100644 tools/unit-test-app/configs/release_2 create mode 100644 tools/unit-test-app/configs/single_core_2 diff --git a/tools/unit-test-app/configs/default b/tools/unit-test-app/configs/default index f7f508a43e..572b6cd8b8 100644 --- a/tools/unit-test-app/configs/default +++ b/tools/unit-test-app/configs/default @@ -1 +1 @@ -TEST_EXCLUDE_COMPONENTS=libsodium bt app_update \ No newline at end of file +TEST_COMPONENTS=freertos esp32 driver heap pthread soc spi_flash vfs \ No newline at end of file diff --git a/tools/unit-test-app/configs/default_2 b/tools/unit-test-app/configs/default_2 new file mode 100644 index 0000000000..c02ec4789c --- /dev/null +++ b/tools/unit-test-app/configs/default_2 @@ -0,0 +1 @@ +TEST_EXCLUDE_COMPONENTS=libsodium bt app_update freertos esp32 driver heap pthread soc spi_flash vfs \ No newline at end of file diff --git a/tools/unit-test-app/configs/release b/tools/unit-test-app/configs/release index d58d949976..75da1aa803 100644 --- a/tools/unit-test-app/configs/release +++ b/tools/unit-test-app/configs/release @@ -1,3 +1,3 @@ -TEST_EXCLUDE_COMPONENTS=bt app_update +TEST_COMPONENTS=freertos esp32 driver heap pthread soc spi_flash vfs CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE=y CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT=y diff --git a/tools/unit-test-app/configs/release_2 b/tools/unit-test-app/configs/release_2 new file mode 100644 index 0000000000..c3e1046759 --- /dev/null +++ b/tools/unit-test-app/configs/release_2 @@ -0,0 +1,3 @@ +TEST_EXCLUDE_COMPONENTS=libsodium bt app_update freertos esp32 driver heap pthread soc spi_flash vfs +CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE=y +CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT=y diff --git a/tools/unit-test-app/configs/single_core b/tools/unit-test-app/configs/single_core index 9c85abae62..40f7e98f21 100644 --- a/tools/unit-test-app/configs/single_core +++ b/tools/unit-test-app/configs/single_core @@ -1,4 +1,4 @@ -TEST_EXCLUDE_COMPONENTS=libsodium bt app_update +TEST_COMPONENTS=freertos esp32 driver heap pthread soc spi_flash vfs CONFIG_MEMMAP_SMP=n CONFIG_FREERTOS_UNICORE=y CONFIG_ESP32_RTCDATA_IN_FAST_MEM=y diff --git a/tools/unit-test-app/configs/single_core_2 b/tools/unit-test-app/configs/single_core_2 new file mode 100644 index 0000000000..17910a0668 --- /dev/null +++ b/tools/unit-test-app/configs/single_core_2 @@ -0,0 +1,4 @@ +TEST_EXCLUDE_COMPONENTS=libsodium bt app_update freertos esp32 driver heap pthread soc spi_flash vfs +CONFIG_MEMMAP_SMP=n +CONFIG_FREERTOS_UNICORE=y +CONFIG_ESP32_RTCDATA_IN_FAST_MEM=y