summaryrefslogtreecommitdiff
path: root/lib/x1000-installer/test/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/x1000-installer/test/main.c')
-rw-r--r--lib/x1000-installer/test/main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/x1000-installer/test/main.c b/lib/x1000-installer/test/main.c
index 9964e22716..f9bff1b704 100644
--- a/lib/x1000-installer/test/main.c
+++ b/lib/x1000-installer/test/main.c
@@ -41,11 +41,13 @@ struct test_info {
41 41
42extern void test_stream_read_lines(void); 42extern void test_stream_read_lines(void);
43extern void test_stream_read_line_too_long(void); 43extern void test_stream_read_line_too_long(void);
44extern void test_flashmap_parseline(void);
44 45
45#define TEST(x) {#x, x} 46#define TEST(x) {#x, x}
46static const struct test_info all_tests[] = { 47static const struct test_info all_tests[] = {
47 TEST(test_stream_read_lines), 48 TEST(test_stream_read_lines),
48 TEST(test_stream_read_line_too_long), 49 TEST(test_stream_read_line_too_long),
50 TEST(test_flashmap_parseline),
49}; 51};
50#undef TEST 52#undef TEST
51 53