blob: 0ed3fc936ed927772b5449f73713a528820ec515 [file] [log] [blame]
Patrick Georgiea063cb2020-05-08 19:28:13 +02001/* fmap_from_fmd.c, simple launcher for fmap library unit test suite */
Patrick Georgi7333a112020-05-08 20:48:04 +02002/* SPDX-License-Identifier: GPL-2.0-only */
Sol Boucher69b88bf2015-02-26 11:47:19 -08003
4#include "flashmap/fmap.h"
5
6#include <stdio.h>
7
8int main(void)
9{
10 int result = fmap_test();
11
12 puts("");
13 puts("===");
14 puts("");
15 if (!result)
16 puts("RESULT: All unit tests PASSED.");
17 else
18 puts("RESULT: One or more tests FAILED!");
19
20 return result;
21}