From 4e6b3561239e6165fa4e1b9971cf9e901cffe483 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 28 Sep 2018 20:07:40 -0600 Subject: [PATCH] apps/examples/fstest/Kconfig: SPIFFS GC and integrity check option interferes SPIFFS. Appears to corrupt the file system. Now marked EXPERIMENTAL. --- examples/fstest/Kconfig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/fstest/Kconfig b/examples/fstest/Kconfig index d00b98440..35a9ac07d 100644 --- a/examples/fstest/Kconfig +++ b/examples/fstest/Kconfig @@ -43,7 +43,7 @@ config EXAMPLES_FSTEST_NLOOPS config EXAMPLES_FSTEST_SPIFFS bool "Enable SPIFFS testing" default y - depends on FS_SPIFFS + depends on FS_SPIFFS && EXPERIMENTAL ---help--- SPIFFS garbage collection and integrity checking will be performed after each pass through the test and if a write fails with ENOSPC. @@ -51,6 +51,8 @@ config EXAMPLES_FSTEST_SPIFFS If this option is not selected then the SPIFFS FLASH will be be reclaimed on-demand when there is no longer any available FLASH. + Marked EXPERIMENTAL because it interferes with test performance. + config EXAMPLES_FSTEST_VERBOSE bool "Verbose output" default n