Message ID | 6aedab09a7f412f62c9cd853ba64ecfb6572b07e.1749554012.git.liezhi.yang@windriver.com |
---|---|
State | New |
Headers | show |
Series | [v2,1/2] libcheck: Fix do_install error with automake 1.18 | expand |
Thank you for your submission. Patchtest identified one or more issues with the patch. Please see the log below for more information: --- Testing patch /home/patchtest/share/mboxes/v2-1-2-libcheck-Fix-do_install-error-with-automake-1.18.patch FAIL: test commit message user tags: Mbox includes one or more GitHub-style username tags. Ensure that any "@" symbols are stripped out of usernames (test_mbox.TestMbox.test_commit_message_user_tags) PASS: pretest src uri left files (test_metadata.TestMetadata.pretest_src_uri_left_files) PASS: test CVE check ignore (test_metadata.TestMetadata.test_cve_check_ignore) PASS: test CVE tag format (test_patch.TestPatch.test_cve_tag_format) PASS: test Signed-off-by presence (test_mbox.TestMbox.test_signed_off_by_presence) PASS: test Signed-off-by presence (test_patch.TestPatch.test_signed_off_by_presence) PASS: test Upstream-Status presence (test_patch.TestPatch.test_upstream_status_presence_format) PASS: test author valid (test_mbox.TestMbox.test_author_valid) PASS: test commit message presence (test_mbox.TestMbox.test_commit_message_presence) PASS: test lic files chksum modified not mentioned (test_metadata.TestMetadata.test_lic_files_chksum_modified_not_mentioned) PASS: test max line length (test_metadata.TestMetadata.test_max_line_length) PASS: test mbox format (test_mbox.TestMbox.test_mbox_format) PASS: test non-AUH upgrade (test_mbox.TestMbox.test_non_auh_upgrade) PASS: test shortlog format (test_mbox.TestMbox.test_shortlog_format) PASS: test shortlog length (test_mbox.TestMbox.test_shortlog_length) PASS: test src uri left files (test_metadata.TestMetadata.test_src_uri_left_files) PASS: test target mailing list (test_mbox.TestMbox.test_target_mailing_list) SKIP: pretest pylint: No python related patches, skipping test (test_python_pylint.PyLint.pretest_pylint) SKIP: test bugzilla entry format: No bug ID found (test_mbox.TestMbox.test_bugzilla_entry_format) SKIP: test lic files chksum presence: No added recipes, skipping test (test_metadata.TestMetadata.test_lic_files_chksum_presence) SKIP: test license presence: No added recipes, skipping test (test_metadata.TestMetadata.test_license_presence) SKIP: test pylint: No python related patches, skipping test (test_python_pylint.PyLint.test_pylint) SKIP: test series merge on head: Merge test is disabled for now (test_mbox.TestMbox.test_series_merge_on_head) SKIP: test summary presence: No added recipes, skipping test (test_metadata.TestMetadata.test_summary_presence) --- Please address the issues identified and submit a new revision of the patch, or alternatively, reply to this email with an explanation of why the patch should be accepted. If you believe these results are due to an error in patchtest, please submit a bug at https://bugzilla.yoctoproject.org/ (use the 'Patchtest' category under 'Yocto Project Subprojects'). For more information on specific failures, see: https://wiki.yoctoproject.org/wiki/Patchtest. Thank you!
diff --git a/meta/recipes-support/libcheck/libcheck/0001-Fix-texinfo-errors-and-warnings.patch b/meta/recipes-support/libcheck/libcheck/0001-Fix-texinfo-errors-and-warnings.patch new file mode 100644 index 0000000000..1edba3f1e1 --- /dev/null +++ b/meta/recipes-support/libcheck/libcheck/0001-Fix-texinfo-errors-and-warnings.patch @@ -0,0 +1,60 @@ +From 6cc46c8ac0bfc012fcb6b0fd27e20d8c06c50919 Mon Sep 17 00:00:00 2001 +From: Jerry James <loganjerry@gmail.com> +Date: Thu, 16 Jan 2025 09:42:41 -0700 +Subject: [PATCH] Fix texinfo errors and warnings + +A missing "@end verbatim" is an error with texinfo 7.2. +The warnings are due to menu and navigation mistakes. + +Upstream-Status: Submitted [https://github.com/libcheck/check/pull/361] + +Signed-off-by: Robert Yang <liezhi.yang@windriver.com> +--- + doc/check.texi | 10 +++++++--- + 1 file changed, 7 insertions(+), 3 deletions(-) + +diff --git a/doc/check.texi b/doc/check.texi +index f6852bc..b241961 100644 +--- a/doc/check.texi ++++ b/doc/check.texi +@@ -112,6 +112,11 @@ Test Fixtures + * Test Fixture Examples:: + * Checked vs Unchecked Fixtures:: + ++Selective Running of Tests ++ ++* Selecting Tests by Suite or Test Case:: ++* Selecting Tests Based on Arbitrary Tags:: ++ + Test Logging + + * XML Logging:: +@@ -974,8 +979,6 @@ easier for the developer to write, run, and analyze tests. + * Test Fixtures:: + * Multiple Suites in one SRunner:: + * Selective Running of Tests:: +-* Selecting Tests by Suite or Test Case:: +-* Selecting Tests Based on Arbitrary Tags:: + * Testing Signal Handling and Exit Values:: + * Looping Tests:: + * Test Timeouts:: +@@ -2048,7 +2051,7 @@ If both plain text and XML log files are specified, by any of above methods, + then check will log to both files. In other words logging in plain text and XML + format simultaneously is supported. + +-@node TAP Logging, , Test Logging, Test Logging ++@node TAP Logging, , XML Logging, Test Logging + @subsection TAP Logging + + @findex srunner_set_tap +@@ -2255,6 +2258,7 @@ your CMake build how to find it: + + @verbatim + cmake -Dcheck_ROOT=${INSTALL_PREFIX} ++@end verbatim + + Then use Check in your @file{CMakeLists.txt} like this: + +-- +2.49.0 + diff --git a/meta/recipes-support/libcheck/libcheck_0.15.2.bb b/meta/recipes-support/libcheck/libcheck_0.15.2.bb index 5ab67b8728..ab9684f03c 100644 --- a/meta/recipes-support/libcheck/libcheck_0.15.2.bb +++ b/meta/recipes-support/libcheck/libcheck_0.15.2.bb @@ -12,7 +12,10 @@ LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=2d5025d4aa3495befef8f17206a5b0a1" SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/check-${PV}.tar.gz \ file://automake-output.patch \ - file://not-echo-compiler-info-to-check_stdint.h.patch" + file://not-echo-compiler-info-to-check_stdint.h.patch \ + file://0001-Fix-texinfo-errors-and-warnings.patch \ +" + SRC_URI[sha256sum] = "a8de4e0bacfb4d76dd1c618ded263523b53b85d92a146d8835eb1a52932fa20a" GITHUB_BASE_URI = "https://github.com/libcheck/check/releases/"