// SPDX-License-Identifier: GPL-2.0+ /* * Copyright 2021 Google LLC * Written by Simon Glass */ #include #include #include #include #include static int spl_test_load(struct unit_test_state *uts) { struct spl_image_info image; char fname[256]; ut_assertok(sandbox_spl_load_fit(fname, sizeof(fname), &image)); return 0; } SPL_TEST(spl_test_load, 0);