summaryrefslogtreecommitdiff
path: root/tests/mtd-tests/Makemodule.am
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2016-08-22 16:10:16 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2016-11-17 11:36:56 +0100
commitbc56d5755c2b1e11a8b1589ef9275710fb2060a7 (patch)
tree411bb29e34107b81c71124edb98f006ebe560ab3 /tests/mtd-tests/Makemodule.am
parent92a5d591906d88302bcecfce1d6b61c6a1675374 (diff)
mtd-utils: Add flash speed test utility
Basically a user space port of the mtd speed test kernel module. In addition to the block offset and count module parameters, the utility supports a block stride and can restore the block contents after test. Furthermore, a flag can be used to disable destructive tests (i.e. only perform read speed tests). Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at> Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'tests/mtd-tests/Makemodule.am')
-rw-r--r--tests/mtd-tests/Makemodule.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/mtd-tests/Makemodule.am b/tests/mtd-tests/Makemodule.am
index 541bc4b..ac40697 100644
--- a/tests/mtd-tests/Makemodule.am
+++ b/tests/mtd-tests/Makemodule.am
@@ -6,8 +6,12 @@ flash_stress_SOURCES = tests/mtd-tests/flash_stress.c
flash_stress_LDADD = libmtd.a
flash_stress_CPPFLAGS = $(AM_CPPFLAGS)
+flash_speed_SOURCES = tests/mtd-tests/flash_speed.c
+flash_speed_LDADD = libmtd.a
+flash_speed_CPPFLAGS = $(AM_CPPFLAGS)
+
MTDTEST_BINS = \
- flash_torture flash_stress
+ flash_torture flash_stress flash_speed
if INSTALL_TESTS
pkglibexec_PROGRAMS += $(MTDTEST_BINS)