blob: a714ff379a28254e16d1b918a6a8141a62543875 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Creates directories /0/0/0 through /3/2/2 and creates files in
the leaf directories. */
#include "tests/filesys/extended/mk-tree.h"
#include "tests/main.h"
void
test_main (void)
{
make_tree (4, 3, 3, 4);
}
|