blob: c8a80523dd35e9b2bae8ff78d01350a82449b0d8 [file] [log] [blame]
Patrick Williamsac13d5f2023-11-24 18:59:46 -06001SUMMARY = "File system QA test suite"
2LICENSE = "GPL-2.0-only"
3LIC_FILES_CHKSUM = "file://LICENSES/GPL-2.0;md5=74274e8a218423e49eefdea80bc55038"
4
Patrick Williams03514f12024-04-05 07:04:11 -05005SRCREV = "088e5bd4cb6d7295612430a56ae84ff5c8f54730"
Patrick Williamsac13d5f2023-11-24 18:59:46 -06006SRCREV_unionmount = "e3825b16b46f4c4574a1a69909944c059835f914"
Patrick Williams73bd93f2024-02-20 08:07:48 -06007SRCREV_FORMAT = "default_unionmount"
8
9SRC_URI = "git://git.kernel.org/pub/scm/fs/xfs/xfstests-dev.git;branch=master \
10 git://github.com/amir73il/unionmount-testsuite.git;branch=master;protocol=https;name=unionmount;destsuffix=unionmount-testsuite \
11 file://0001-add-missing-FTW_-macros-when-not-available-in-libc.patch \
12 file://0002-Drop-detached_mounts_propagation-and-remove-sys-moun.patch \
Patrick Williams03514f12024-04-05 07:04:11 -050013 file://0001-include-libgen.h-for-basename-API-prototype.patch \
14 file://0002-Add-missing-STATX_ATTR_-defines-from-musl-sys-stat.h.patch \
Patrick Williams73bd93f2024-02-20 08:07:48 -060015 "
Patrick Williamsac13d5f2023-11-24 18:59:46 -060016
17S = "${WORKDIR}/git"
18
Patrick Williams73bd93f2024-02-20 08:07:48 -060019# brokensep because m4/package_globals.m4 calls ". ./VERSION" (and that's not the only issue)
Patrick Williamsac13d5f2023-11-24 18:59:46 -060020inherit autotools-brokensep useradd
21
22DEPENDS += "xfsprogs acl"
23RDEPENDS:${PN} += "\
24 bash \
25 bc \
26 coreutils \
27 e2fsprogs \
28 e2fsprogs-tune2fs \
29 e2fsprogs-resize2fs \
30 libaio \
31 libcap-bin \
32 overlayfs-tools \
33 perl \
34 python3 \
35 python3-core \
36 xfsprogs \
37 acl \
Patrick Williams73bd93f2024-02-20 08:07:48 -060038 gawk \
Patrick Williamsac13d5f2023-11-24 18:59:46 -060039"
40
41USERADD_PACKAGES = "${PN}"
42# these users are necessary to run the tests
43USERADD_PARAM:${PN} = "-U -m fsgqa; -N 123456-fsgqa; -N fsgqa2"
44
45EXTRA_OECONF = "INSTALL_USER=root INSTALL_GROUP=root"
46
47TARGET_CC_ARCH:append:libc-musl = " -D_LARGEFILE64_SOURCE"
Patrick Williams73bd93f2024-02-20 08:07:48 -060048
Patrick Williamsac13d5f2023-11-24 18:59:46 -060049do_configure:prepend() {
Patrick Williams73bd93f2024-02-20 08:07:48 -060050 # this is done by Makefile configure target, but we don't call it in do_configure
51 cp -a ${S}/include/install-sh .
Patrick Williamsac13d5f2023-11-24 18:59:46 -060052}
53
Patrick Williams73bd93f2024-02-20 08:07:48 -060054do_install() {
55 # otherwise install-sh duplicates DESTDIR prefix
56 export DIST_ROOT="/" DIST_MANIFEST="" DESTDIR="${D}"
57 oe_runmake install
58
59 unionmount_target_dir=${D}${prefix}/xfstests/unionmount-testsuite
60 install -d $unionmount_target_dir/tests
61 install ${WORKDIR}/unionmount-testsuite/tests/* -t $unionmount_target_dir/tests
Patrick Williamsac13d5f2023-11-24 18:59:46 -060062 install ${WORKDIR}/unionmount-testsuite/*.py -t $unionmount_target_dir
63 install ${WORKDIR}/unionmount-testsuite/run -t $unionmount_target_dir
64 install ${WORKDIR}/unionmount-testsuite/README -t $unionmount_target_dir
65}
66
Patrick Williams73bd93f2024-02-20 08:07:48 -060067FILES:${PN} += "${prefix}/xfstests"