summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/image/spl_load_os.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/image/spl_load_os.c b/test/image/spl_load_os.c
index d17cf116a0e..ba9d7979a09 100644
--- a/test/image/spl_load_os.c
+++ b/test/image/spl_load_os.c
@@ -21,3 +21,14 @@ static int spl_test_load(struct unit_test_state *uts)
}
SPL_TEST(spl_test_load, 0);
+static int spl_test_load_fit_full(struct unit_test_state *uts)
+{
+ struct spl_image_info image;
+ char fname[256];
+
+ ut_assertok(sandbox_spl_load_fit_full(fname, sizeof(fname), &image));
+
+ return 0;
+}
+SPL_TEST(spl_test_load_fit_full, 0);
+