diff options
| author | Michael Olbrich <m.olbrich@pengutronix.de> | 2025-02-20 12:25:54 +0100 |
|---|---|---|
| committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2025-11-28 19:52:57 +0100 |
| commit | 09e151c895326824383258469f5c6f85652f19cd (patch) | |
| tree | 8b45aa07ad1a6f4e56b5ff8b0ffdf42ac6d9dce8 /tests/ubifs_tools-tests/Makemodule.am | |
| parent | 77981a2888c711268b0e7f32af6af159c2288e23 (diff) | |
tests: add test_DATA to EXTRA_DIST
Otherwise, the test files are missin in the tarball and building fails
with:
make[1]: *** No rule to make target 'tests/ubifs_tools-tests/images/good.gz', needed by 'all-am'. Stop.
unless --without-tests is uses.
Reviewed-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/ubifs_tools-tests/Makemodule.am')
| -rw-r--r-- | tests/ubifs_tools-tests/Makemodule.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/ubifs_tools-tests/Makemodule.am b/tests/ubifs_tools-tests/Makemodule.am index 1715757..5fe4f83 100644 --- a/tests/ubifs_tools-tests/Makemodule.am +++ b/tests/ubifs_tools-tests/Makemodule.am @@ -10,7 +10,7 @@ test_SCRIPTS += \ tests/ubifs_tools-tests/fsck_tests/fsck_bad_image.sh \ tests/ubifs_tools-tests/mkfs_tests/build_fs_from_dir.sh -test_DATA += \ +TEST_IMAGE_FILES = \ tests/ubifs_tools-tests/images/good.gz \ tests/ubifs_tools-tests/images/sb_fanout.gz \ tests/ubifs_tools-tests/images/sb_fmt_version.gz \ @@ -64,3 +64,6 @@ test_DATA += \ tests/ubifs_tools-tests/images/dir_lost_not_recover.gz \ tests/ubifs_tools-tests/images/root_dir.gz \ tests/ubifs_tools-tests/images/empty_tnc.gz + +test_DATA += $(TEST_IMAGE_FILES) +EXTRA_DIST += $(TEST_IMAGE_FILES) |
