Blame view

RIOT/tests/unittests/tests-vfs/tests-vfs.c 1.06 KB
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  /*
   * Copyright (C) 2016 Eistec AB
   *
   * This file is subject to the terms and conditions of the GNU Lesser
   * General Public License v2.1. See the file LICENSE in the top level
   * directory for more details.
   */
  
  /**
   * @{
   *
   * @file
   * @brief       Unittest entry point for the VFS test group
   *
   * @author      Joakim Nohlgård <joakim.nohlgard@eistec.se>
   */
  
  #include "embUnit/embUnit.h"
  
  #include "tests-vfs.h"
  
  Test *tests_vfs_bind_tests(void);
  Test *tests_vfs_mount_constfs_tests(void);
  Test *tests_vfs_open_close_tests(void);
  Test *tests_vfs_normalize_path_tests(void);
  Test *tests_vfs_null_file_ops_tests(void);
  Test *tests_vfs_null_file_system_ops_tests(void);
  Test *tests_vfs_null_dir_ops_tests(void);
  
  void tests_vfs(void)
  {
      TESTS_RUN(tests_vfs_open_close_tests());
      TESTS_RUN(tests_vfs_bind_tests());
      TESTS_RUN(tests_vfs_mount_constfs_tests());
      TESTS_RUN(tests_vfs_normalize_path_tests());
      TESTS_RUN(tests_vfs_null_file_ops_tests());
      TESTS_RUN(tests_vfs_null_file_system_ops_tests());
      TESTS_RUN(tests_vfs_null_dir_ops_tests());
  }
  /** @} */