summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libcheck
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/libcheck')
-rw-r--r--meta/recipes-support/libcheck/libcheck/automake-output.patch82
-rw-r--r--meta/recipes-support/libcheck/libcheck_0.15.2.bb24
2 files changed, 98 insertions, 8 deletions
diff --git a/meta/recipes-support/libcheck/libcheck/automake-output.patch b/meta/recipes-support/libcheck/libcheck/automake-output.patch
new file mode 100644
index 0000000000..c860f0cc0f
--- /dev/null
+++ b/meta/recipes-support/libcheck/libcheck/automake-output.patch
@@ -0,0 +1,82 @@
1Add optional output in automake style, for integration with ptest.
2Export CK_AUTOMAKE=1 when running a test suite and you'll get
3PASS/FAIL lines on standard output.
4
5Marking this as Inappropriate right now as it's a little rough on the
6edges. Filed https://github.com/libcheck/check/issues/349 to discuss
7with upstream.
8
9Upstream-Status: Inappropriate
10Signed-off-by: Ross Burton <ross.burton@arm.com>
11
12diff --git a/src/check_log.c b/src/check_log.c
13index 0844661..ad23c65 100644
14--- a/src/check_log.c
15+++ b/src/check_log.c
16@@ -26,6 +26,7 @@
17 #if ENABLE_SUBUNIT
18 #include <subunit/child.h>
19 #endif
20+#include <libgen.h>
21
22 #include "check_error.h"
23 #include "check_list.h"
24@@ -381,6 +382,34 @@ void tap_lfun(SRunner * sr CK_ATTRIBUTE_UNUSED, FILE * file,
25 }
26 }
27
28+void am_lfun(SRunner * sr CK_ATTRIBUTE_UNUSED, FILE * file,
29+ enum print_output printmode CK_ATTRIBUTE_UNUSED, void *obj,
30+ enum cl_event evt)
31+{
32+ TestResult *tr;
33+ const char* types[] = { "INVALID", "PASS", "FAIL", "ERROR"};
34+
35+ switch (evt)
36+ {
37+ case CLINITLOG_SR:
38+ case CLENDLOG_SR:
39+ case CLSTART_SR:
40+ case CLSTART_S:
41+ case CLEND_SR:
42+ case CLEND_S:
43+ case CLSTART_T:
44+ break;
45+ case CLEND_T:
46+ tr = (TestResult *)obj;
47+ fprintf(file, "%s: %s:%s:%s %s\n",
48+ types[tr->rtype], basename(tr->file), tr->tcname, tr->tname, tr->msg);
49+ fflush(file);
50+ break;
51+ default:
52+ eprintf("Bad event type received in am_lfun", __FILE__, __LINE__);
53+ }
54+}
55+
56 #if ENABLE_SUBUNIT
57 void subunit_lfun(SRunner * sr, FILE * file, enum print_output printmode,
58 void *obj, enum cl_event evt)
59@@ -527,6 +556,9 @@ void srunner_init_logging(SRunner * sr, enum print_output print_mode)
60 {
61 srunner_register_lfun(sr, f, f != stdout, tap_lfun, print_mode);
62 }
63+ if (getenv("CK_AUTOMAKE"))
64+ srunner_register_lfun(sr, stdout, 0, am_lfun, print_mode);
65+
66 srunner_send_evt(sr, NULL, CLINITLOG_SR);
67 }
68
69diff --git a/src/check_log.h b/src/check_log.h
70index 7223b98..bfe1de3 100644
71--- a/src/check_log.h
72+++ b/src/check_log.h
73@@ -40,6 +40,9 @@ void xml_lfun(SRunner * sr, FILE * file, enum print_output,
74 void tap_lfun(SRunner * sr, FILE * file, enum print_output,
75 void *obj, enum cl_event evt);
76
77+void am_lfun(SRunner * sr, FILE * file, enum print_output,
78+ void *obj, enum cl_event evt);
79+
80 void subunit_lfun(SRunner * sr, FILE * file, enum print_output,
81 void *obj, enum cl_event evt);
82
diff --git a/meta/recipes-support/libcheck/libcheck_0.15.2.bb b/meta/recipes-support/libcheck/libcheck_0.15.2.bb
index 33e07db93c..5ab67b8728 100644
--- a/meta/recipes-support/libcheck/libcheck_0.15.2.bb
+++ b/meta/recipes-support/libcheck/libcheck_0.15.2.bb
@@ -1,28 +1,36 @@
1SUMMARY = "Check - unit testing framework for C code" 1SUMMARY = "Check - unit testing framework for C code"
2DESCRIPTION = "It features a simple interface for defining unit tests, \
3putting little in the way of the developer. Tests are run in a separate \
4address space, so both assertion failures and code errors that cause \
5segmentation faults or other signals can be caught. Test results are \
6reportable in the following: Subunit, TAP, XML, and a generic logging format."
2HOMEPAGE = "https://libcheck.github.io/check/" 7HOMEPAGE = "https://libcheck.github.io/check/"
3SECTION = "devel" 8SECTION = "devel"
4 9
5LICENSE = "LGPLv2.1+" 10LICENSE = "LGPL-2.1-or-later"
6LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=2d5025d4aa3495befef8f17206a5b0a1" 11LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=2d5025d4aa3495befef8f17206a5b0a1"
7 12
8SRC_URI = "https://github.com/${BPN}/check/releases/download/${PV}/check-${PV}.tar.gz \ 13SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/check-${PV}.tar.gz \
14 file://automake-output.patch \
9 file://not-echo-compiler-info-to-check_stdint.h.patch" 15 file://not-echo-compiler-info-to-check_stdint.h.patch"
10SRC_URI[sha256sum] = "a8de4e0bacfb4d76dd1c618ded263523b53b85d92a146d8835eb1a52932fa20a" 16SRC_URI[sha256sum] = "a8de4e0bacfb4d76dd1c618ded263523b53b85d92a146d8835eb1a52932fa20a"
11UPSTREAM_CHECK_URI = "https://github.com/libcheck/check/releases/" 17GITHUB_BASE_URI = "https://github.com/libcheck/check/releases/"
12 18
13S = "${WORKDIR}/check-${PV}" 19S = "${WORKDIR}/check-${PV}"
14 20
15inherit autotools pkgconfig texinfo 21inherit autotools pkgconfig texinfo github-releases
16 22
17CACHED_CONFIGUREVARS += "ac_cv_path_AWK_PATH=${bindir}/gawk" 23CACHED_CONFIGUREVARS += "ac_cv_path_AWK_PATH=${bindir}/gawk"
18 24
19RREPLACES_${PN} = "check (<= 0.9.5)" 25RREPLACES:${PN} = "check (<= 0.9.5)"
20 26
27do_install:append:class-native() {
28 create_cmdline_shebang_wrapper ${D}${bindir}/checkmk
29}
21BBCLASSEXTEND = "native nativesdk" 30BBCLASSEXTEND = "native nativesdk"
22 31
23PACKAGES =+ "checkmk" 32PACKAGES =+ "checkmk"
24 33
25FILES_checkmk = "${bindir}/checkmk" 34FILES:checkmk = "${bindir}/checkmk"
26
27RDEPENDS_checkmk = "gawk"
28 35
36RDEPENDS:checkmk = "gawk"