1 /* 2 * Copyright (c) 2018 Intel Corporation. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <stdio.h> 8 #include <zephyr/fs/fs.h> 9 #include "test_common.h" 10 #include "test_fat.h" 11 #include "test_fat_priv.h" 12 13 test_fat_mkdir(void)14void test_fat_mkdir(void) 15 { 16 zassert_true(test_mkdir(TEST_DIR_PATH, TEST_FILE) == TC_PASS); 17 } 18 test_fat_readdir(void)19void test_fat_readdir(void) 20 { 21 zassert_true(test_lsdir(TEST_DIR_PATH) == TC_PASS); 22 } 23 test_fat_rmdir(void)24void test_fat_rmdir(void) 25 { 26 zassert_true(test_rmdir(TEST_DIR_PATH) == TC_PASS); 27 } 28