Skip to content
Snippets Groups Projects
Commit a56b912b authored by Esben Haabendal's avatar Esben Haabendal
Browse files

openharmony-standard: Backport OPENHARMONY_PTEST_IS_BROKEN to 3.0


Allow marking broken ptest suites so we can fix things gradually while
keeping track of regressions in the components we already have fixed.

Signed-off-by: default avatarEsben Haabendal <esben.haabendal@huawei.com>
parent c2fb205a
No related branches found
No related tags found
1 merge request!32openharmony-standard: Separate package for appspawn component
...@@ -346,6 +346,17 @@ RDEPENDS:${PN}-hilog += "musl libcxx" ...@@ -346,6 +346,17 @@ RDEPENDS:${PN}-hilog += "musl libcxx"
RDEPENDS:${PN}-hilog-ptest += "musl libcxx" RDEPENDS:${PN}-hilog-ptest += "musl libcxx"
RDEPENDS:${PN}-hilog += "${PN}-libutilsecurec" RDEPENDS:${PN}-hilog += "${PN}-libutilsecurec"
# Disable all ptest suites that are know to not work for now. When the x-bit is
# not set, the ptest is visible (using `ptest-runner -l`), but no test cases
# will be run when executing it.
# TODO: Fix all components and tests and remove all of this
do_install_ptest:append() {
for component in ${OPENHARMONY_PTEST_IS_BROKEN} ; do
chmod -x ${D}${libdir}/${BPN}-$component/ptest/run-ptest
done
}
EXCLUDE_FROM_SHLIBS = "1" EXCLUDE_FROM_SHLIBS = "1"
# To avoid excessive diskspace blowup, we are stripping our executables # To avoid excessive diskspace blowup, we are stripping our executables
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment