zephyr/tests/subsys/fs/ext2/src/testfs_mount_flags.c
Franciszek Zdobylak d86e880f6d tests: fs: ext2: Mount flags test
Use test_fs_mount_flags in ext2 tests.

Signed-off-by: Franciszek Zdobylak <fzdobylak@antmicro.com>
2023-08-03 12:22:01 -04:00

22 lines
368 B
C

/*
* Copyright (c) 2023 Antmicro
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/ztest.h>
#include <zephyr/fs/fs.h>
#include <zephyr/fs/ext2.h>
#include "utils.h"
void test_fs_mount_flags(void);
/* Global variable expected by tests */
struct fs_mount_t *mount_flags_mp = &testfs_mnt;
ZTEST(ext2tests, test_mount_flags)
{
test_fs_mount_flags();
}