summaryrefslogtreecommitdiff
path: root/tests/mtd-tests/Makemodule.am
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2016-08-22 16:12:20 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2016-11-17 11:36:56 +0100
commit0332702397934c3e1bb237ee5e7b4e3b0e3c1497 (patch)
tree6ef676c475cb8dbdc85eb5a246d618fc1871fe90 /tests/mtd-tests/Makemodule.am
parentbc56d5755c2b1e11a8b1589ef9275710fb2060a7 (diff)
mtd-utils: Add nand flash bit errors test
Basically a user space port of the mtd speed test kernel module. In addition to the module parameters, the utility can resture the block contents after test and allows setting the maxium writes for the test. 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 ac40697..38b419f 100644
--- a/tests/mtd-tests/Makemodule.am
+++ b/tests/mtd-tests/Makemodule.am
@@ -10,8 +10,12 @@ flash_speed_SOURCES = tests/mtd-tests/flash_speed.c
flash_speed_LDADD = libmtd.a
flash_speed_CPPFLAGS = $(AM_CPPFLAGS)
+nandbiterrs_SOURCES = tests/mtd-tests/nandbiterrs.c
+nandbiterrs_LDADD = libmtd.a
+nandbiterrs_CPPFLAGS = $(AM_CPPFLAGS)
+
MTDTEST_BINS = \
- flash_torture flash_stress flash_speed
+ flash_torture flash_stress flash_speed nandbiterrs
if INSTALL_TESTS
pkglibexec_PROGRAMS += $(MTDTEST_BINS)