diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-03-25 14:23:58 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-03-25 14:35:39 +0100 |
commit | b0b88d26c9df6d336167f87ce926bba9b56f6af0 (patch) | |
tree | 39733ee0a0127380bc7b4c93cd67f6a15afc74e4 /tests/libfstree/fstree_from_file.c | |
parent | bd87f7c8a46cabe6d4c71d9cea74329898da31a7 (diff) |
libfstree: Allow / as argument for "glob" and "dir" commands
This allows putting globbed files & directories into the filesystem
root, as well as explicitly setting attributes of the root directory
from the file lisiting.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/libfstree/fstree_from_file.c')
-rw-r--r-- | tests/libfstree/fstree_from_file.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/libfstree/fstree_from_file.c b/tests/libfstree/fstree_from_file.c index c8816e6..5d37960 100644 --- a/tests/libfstree/fstree_from_file.c +++ b/tests/libfstree/fstree_from_file.c @@ -21,6 +21,9 @@ int main(void) n = fs.root->data.dir.children; TEST_EQUAL_UI(fs.root->link_count, 9); + TEST_EQUAL_UI(fs.root->mode, S_IFDIR | 0755); + TEST_EQUAL_UI(fs.root->uid, 1000); + TEST_EQUAL_UI(fs.root->gid, 100); TEST_EQUAL_UI(n->mode, S_IFBLK | 0600); TEST_EQUAL_UI(n->uid, 8); |