aboutsummaryrefslogtreecommitdiff
path: root/tests/mtd-tests/Makemodule.am
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2016-08-22 16:19:55 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2016-11-17 11:36:56 +0100
commit4c6eb0a05500f8ff3bc38b52b3c0e68b25e22e0b (patch)
treecdeb35ee8df99f2ba7233023ca5b6029b2254163 /tests/mtd-tests/Makemodule.am
parent5d74b05646751510a461c4bba577a96c218c0578 (diff)
mtd-utils: Add nand page test utility
Basically a user space port of the mtd page test kernel module. In addition to the module parameters, the utility supports using only a sub-range of the flash erase blocks with a configurable stride. 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.am7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/mtd-tests/Makemodule.am b/tests/mtd-tests/Makemodule.am
index 231a971..55d8329 100644
--- a/tests/mtd-tests/Makemodule.am
+++ b/tests/mtd-tests/Makemodule.am
@@ -18,8 +18,13 @@ flash_readtest_SOURCES = tests/mtd-tests/flash_readtest.c
flash_readtest_LDADD = libmtd.a
flash_readtest_CPPFLAGS = $(AM_CPPFLAGS)
+nandpagetest_SOURCES = tests/mtd-tests/nandpagetest.c
+nandpagetest_LDADD = libmtd.a
+nandpagetest_CPPFLAGS = $(AM_CPPFLAGS)
+
MTDTEST_BINS = \
- flash_torture flash_stress flash_speed nandbiterrs flash_readtest
+ flash_torture flash_stress flash_speed nandbiterrs flash_readtest \
+ nandpagetest
if INSTALL_TESTS
pkglibexec_PROGRAMS += $(MTDTEST_BINS)