diff options
| author | Khem Raj <raj.khem@gmail.com> | 2023-05-04 16:28:15 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-05-09 07:50:14 +0100 |
| commit | b81c523326c3ae37eaff1756bb809cea49c8f6ea (patch) | |
| tree | 2d3653b05014ccba74a03755c7759746af2fb079 /meta | |
| parent | f70ab32ec4aca5e2bcd67de3183dc0a0eef56bda (diff) | |
| download | poky-b81c523326c3ae37eaff1756bb809cea49c8f6ea.tar.gz | |
cpio: Run ptests under ptest user
Running these tests under root user on musl works ok but it emits
additional diagnostic
cpio: dir: Cannot change ownership to uid 0, gid 0: Not supported
Ideally its better to run this test suite under non-root user which
is often how these are run. Moreover, tests work on musl as well.
(From OE-Core rev: 22d19266269c28f596f031fcba8f2831c6465880)
(From OE-Core rev: 587e007d9febfe92fef434dea984d31642bb23a1)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
| -rwxr-xr-x[-rw-r--r--] | meta/recipes-extended/cpio/cpio-2.13/run-ptest | 9 | ||||
| -rw-r--r-- | meta/recipes-extended/cpio/cpio-2.13/test.sh | 10 | ||||
| -rw-r--r-- | meta/recipes-extended/cpio/cpio_2.13.bb | 18 |
3 files changed, 28 insertions, 9 deletions
diff --git a/meta/recipes-extended/cpio/cpio-2.13/run-ptest b/meta/recipes-extended/cpio/cpio-2.13/run-ptest index f027574e86..f35a756d6b 100644..100755 --- a/meta/recipes-extended/cpio/cpio-2.13/run-ptest +++ b/meta/recipes-extended/cpio/cpio-2.13/run-ptest | |||
| @@ -1,10 +1,3 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | # Define cpio test work dir | 3 | su -c ./test.sh ptest |
| 4 | WORKDIR=@PTEST_PATH@/tests/ | ||
| 5 | |||
| 6 | # Run test | ||
| 7 | cd ${WORKDIR} | ||
| 8 | ./atconfig ./atlocal ./testsuite | ||
| 9 | |||
| 10 | ./testsuite 2>&1 | grep -E '[0-9]{1,3}: ' | sed -e 's/^.....//' -e '/[ok]$/s/^/PASS: /;/FAILED (.*)/s/^/FAIL: /;/skipped (.*)/s/^/SKIP: /;/expected failure/ s/^/PASS: /;/UNEXPECTED PASS/s/^/FAIL: /' -e 's/ok$//g' -e 's/FAILED.*//g' -e 's/skipped.*//g' -e 's/expected failure.*//g' -e 's/UNEXPECTED PASS.*//g' | ||
diff --git a/meta/recipes-extended/cpio/cpio-2.13/test.sh b/meta/recipes-extended/cpio/cpio-2.13/test.sh new file mode 100644 index 0000000000..f027574e86 --- /dev/null +++ b/meta/recipes-extended/cpio/cpio-2.13/test.sh | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | # Define cpio test work dir | ||
| 4 | WORKDIR=@PTEST_PATH@/tests/ | ||
| 5 | |||
| 6 | # Run test | ||
| 7 | cd ${WORKDIR} | ||
| 8 | ./atconfig ./atlocal ./testsuite | ||
| 9 | |||
| 10 | ./testsuite 2>&1 | grep -E '[0-9]{1,3}: ' | sed -e 's/^.....//' -e '/[ok]$/s/^/PASS: /;/FAILED (.*)/s/^/FAIL: /;/skipped (.*)/s/^/SKIP: /;/expected failure/ s/^/PASS: /;/UNEXPECTED PASS/s/^/FAIL: /' -e 's/ok$//g' -e 's/FAILED.*//g' -e 's/skipped.*//g' -e 's/expected failure.*//g' -e 's/UNEXPECTED PASS.*//g' | ||
diff --git a/meta/recipes-extended/cpio/cpio_2.13.bb b/meta/recipes-extended/cpio/cpio_2.13.bb index df5e09cae8..55bcc606b3 100644 --- a/meta/recipes-extended/cpio/cpio_2.13.bb +++ b/meta/recipes-extended/cpio/cpio_2.13.bb | |||
| @@ -14,6 +14,7 @@ SRC_URI = "${GNU_MIRROR}/cpio/cpio-${PV}.tar.gz \ | |||
| 14 | file://0001-Use-__alignof__-with-clang.patch \ | 14 | file://0001-Use-__alignof__-with-clang.patch \ |
| 15 | file://0001-Wrong-CRC-with-ASCII-CRC-for-large-files.patch \ | 15 | file://0001-Wrong-CRC-with-ASCII-CRC-for-large-files.patch \ |
| 16 | file://run-ptest \ | 16 | file://run-ptest \ |
| 17 | file://test.sh \ | ||
| 17 | " | 18 | " |
| 18 | 19 | ||
| 19 | SRC_URI[md5sum] = "389c5452d667c23b5eceb206f5000810" | 20 | SRC_URI[md5sum] = "389c5452d667c23b5eceb206f5000810" |
| @@ -57,9 +58,24 @@ do_install_ptest() { | |||
| 57 | install --mode=755 ${B}/tests/atlocal ${D}${PTEST_PATH}/tests/ | 58 | install --mode=755 ${B}/tests/atlocal ${D}${PTEST_PATH}/tests/ |
| 58 | install --mode=755 ${B}/tests/genfile ${D}${PTEST_PATH}/tests/ | 59 | install --mode=755 ${B}/tests/genfile ${D}${PTEST_PATH}/tests/ |
| 59 | install --mode=755 ${S}/tests/testsuite ${D}${PTEST_PATH}/tests/ | 60 | install --mode=755 ${S}/tests/testsuite ${D}${PTEST_PATH}/tests/ |
| 60 | sed -i "s#@PTEST_PATH@#${PTEST_PATH}#g" ${D}${PTEST_PATH}/run-ptest | 61 | install --mode=755 ${WORKDIR}/test.sh ${D}${PTEST_PATH}/test.sh |
| 62 | sed -i "s#@PTEST_PATH@#${PTEST_PATH}#g" ${D}${PTEST_PATH}/test.sh | ||
| 61 | } | 63 | } |
| 62 | 64 | ||
| 65 | # ptest.bbclass currently chowns the ptest directory explicitly, so we need to | ||
| 66 | # change permission after that has happened so the ptest user can write a | ||
| 67 | # temporary directory. | ||
| 68 | do_install_ptest_base:append() { | ||
| 69 | chgrp -R ptest ${D}${PTEST_PATH}/ | ||
| 70 | chmod -R g+w ${D}${PTEST_PATH}/ | ||
| 71 | } | ||
| 72 | |||
| 73 | # The tests need to run as a non-root user, so pull in the ptest user | ||
| 74 | DEPENDS:append:class-target = "${@bb.utils.contains('PTEST_ENABLED', '1', ' ptest-runner', '', d)}" | ||
| 75 | PACKAGE_WRITE_DEPS += "ptest-runner" | ||
| 76 | |||
| 77 | RDEPENDS:${PN}-ptest += "ptest-runner" | ||
| 78 | |||
| 63 | PACKAGES =+ "${PN}-rmt" | 79 | PACKAGES =+ "${PN}-rmt" |
| 64 | 80 | ||
| 65 | FILES:${PN}-rmt = "${sbindir}/rmt*" | 81 | FILES:${PN}-rmt = "${sbindir}/rmt*" |
