mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 10:13:03 +01:00
ptest.patch refreshed for 1.24. Changelog: =========== * New gdbm_load option: --update * Fix semantics of gdbm_load -r * Use getline in gdbmtool shell. * New function: gdbm_load_from_file_ext * Fix binary dump format for key and/or data of zero size. * Fix location tracking and recover command in gdbtool. * Fix possible buffer underflow in gdbmload. * Ensure any padding bytes in avail_elem structure are filled with 0. * Improve the documentation. (From OE-Core rev: 458fda9cc5f871e200bcd33ed33fda4a0ed46ff4) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
47 lines
1.4 KiB
Diff
47 lines
1.4 KiB
Diff
From ed0b5a48c7ce59ea971a10c7e522933cf613841a Mon Sep 17 00:00:00 2001
|
|
From: Josep Puigdemont <josep.puigdemont@enea.com>
|
|
Date: Sun, 4 May 2014 16:02:07 +0200
|
|
Subject: [PATCH] Add install-ptest rules.
|
|
|
|
Signed-off-by: Josep Puigdemont <josep.puigdemont@enea.com>
|
|
Signed-off-by: Maxin B. John <maxin.john@enea.com>
|
|
Upstream-Status: Pending
|
|
---
|
|
Makefile.am | 5 +++++
|
|
tests/Makefile.am | 12 ++++++++++++
|
|
2 files changed, 17 insertions(+)
|
|
|
|
diff --git a/Makefile.am b/Makefile.am
|
|
index d0b46ea..6c57b11 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -64,3 +64,8 @@ ChangeLog:
|
|
mv ChangeLog.tmp ChangeLog; \
|
|
rm -f ChangeLog.tmp; \
|
|
fi
|
|
+
|
|
+install-ptest:
|
|
+ @for subdir in $(SUBDIRS); do \
|
|
+ $(MAKE) -C $$subdir DESTDIR=$(DESTDIR)/$$subdir $@; \
|
|
+ done
|
|
diff --git a/tests/Makefile.am b/tests/Makefile.am
|
|
index eb071ac..9d14fe8 100644
|
|
--- a/tests/Makefile.am
|
|
+++ b/tests/Makefile.am
|
|
@@ -145,3 +145,15 @@ d_creat_ce_LDADD = ../src/libgdbm.la ../compat/libgdbm_compat.la
|
|
t_wordwrap_LDADD = ../tools/libgdbmapp.a
|
|
|
|
SUBDIRS = gdbmtool
|
|
+
|
|
+buildtests: $(check_PROGRAMS) $(TESTSUITE)
|
|
+
|
|
+install-ptest: $(check_PROGRAMS) $(TESTSUITE)
|
|
+ @$(INSTALL) -d $(DESTDIR)
|
|
+ @for file in $^; do \
|
|
+ if [ -x .libs/$$file ]; then \
|
|
+ $(INSTALL_PROGRAM) .libs/$$file $(DESTDIR)/$$file; \
|
|
+ else \
|
|
+ $(INSTALL_PROGRAM) $$file $(DESTDIR) ; \
|
|
+ fi \
|
|
+ done
|