1 /* 2 * Copyright (c) 2023 Antmicro 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/ztest.h> 8 #include <zephyr/fs/fs.h> 9 #include <zephyr/fs/ext2.h> 10 11 #include "utils.h" 12 13 void test_fs_mount_flags(void); 14 15 /* Global variable expected by tests */ 16 struct fs_mount_t *mount_flags_mp = &testfs_mnt; 17 ZTEST(ext2tests,test_mount_flags)18ZTEST(ext2tests, test_mount_flags) 19 { 20 test_fs_mount_flags(); 21 } 22