diff options
| author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2022-11-27 10:32:13 +0100 | 
|---|---|---|
| committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2022-11-27 10:32:13 +0100 | 
| commit | a487eec3e3e7c1c5552d17acd0db8cd5dcc59fc7 (patch) | |
| tree | 783c4c23ec005545c1cc04925f17c980a4608d93 /tests/gensquashfs | |
| parent | 62e598c500b53902e3d97b62d879e6e9c7785d00 (diff) | |
Continue cleanup of the test cases
 - Force all tests into their proper sub directory
 - Temporarily remove the corpora tests. They have been used for
   regression tests before releases and are disabled by default, so
   we should not ship them either. A script should be added for that,
   downloading what is needed.
 - The "pack a directory" test is also removed. It was rather hacky
   and there already is a test case for the fstree_from_dir function,
   which isn't ideal either. Something should be added to the
   regression test suite.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/gensquashfs')
| -rw-r--r-- | tests/gensquashfs/fstree_from_dir.c | 6 | 
1 files changed, 0 insertions, 6 deletions
| diff --git a/tests/gensquashfs/fstree_from_dir.c b/tests/gensquashfs/fstree_from_dir.c index 2799bf3..3aad1c6 100644 --- a/tests/gensquashfs/fstree_from_dir.c +++ b/tests/gensquashfs/fstree_from_dir.c @@ -237,12 +237,6 @@ static void check_hierarchy(tree_node_t *root, bool recursive)  	n = n->next;  	TEST_NOT_NULL(n); -	TEST_STR_EQUAL(n->name, "sqfs.sha512"); -	TEST_ASSERT(S_ISREG(n->mode)); -	TEST_ASSERT(n->parent == root); - -	n = n->next; -	TEST_NOT_NULL(n);  	TEST_STR_EQUAL(n->name, "user-group-largenum");  	TEST_ASSERT(S_ISDIR(n->mode));  	TEST_ASSERT(n->parent == root); | 
