summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEnrico Scholz <enrico.scholz@sigma-chemnitz.de>2022-08-30 09:38:14 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2022-09-12 12:09:45 +0200
commit32867e6d6e49cc02057476cd4fbeb726ca1ee9e4 (patch)
tree04ee17e0029353f3a2c2ac5ffd5f5dc6000039c6 /test
parent207210e9d07f3437b67e6a6fb15843052ebe3ac8 (diff)
downloadbarebox-32867e6d6e49cc02057476cd4fbeb726ca1ee9e4.tar.gz
tftp: add selftest
Unittest for window cache functions. Signed-off-by: Enrico Scholz <enrico.scholz@sigma-chemnitz.de> Link: https://lore.barebox.org/20220830073816.2694734-20-enrico.scholz@sigma-chemnitz.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'test')
-rw-r--r--test/self/Kconfig7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/self/Kconfig b/test/self/Kconfig
index 680196a4fe..03cfa89987 100644
--- a/test/self/Kconfig
+++ b/test/self/Kconfig
@@ -32,6 +32,7 @@ config SELFTEST_ENABLE_ALL
select SELFTEST_PROGRESS_NOTIFIER
select SELFTEST_OF_MANIPULATION
select SELFTEST_ENVIRONMENT_VARIABLES if ENVIRONMENT_VARIABLES
+ imply SELFTEST_TFTP
help
Selects all self-tests compatible with current configuration
@@ -57,4 +58,10 @@ config SELFTEST_PROGRESS_NOTIFIER
config SELFTEST_ENVIRONMENT_VARIABLES
bool "environment variable selftest"
+config SELFTEST_TFTP
+ bool "tftp selftest"
+ depends on FS_TFTP
+ help
+ Tests tftp functionality
+
endif