1From e49a0d4a8f3f725d6f683854e1cad36a3cd02962 Mon Sep 17 00:00:00 2001 2From: Tony Tascioglu <tony.tascioglu@windriver.com> 3Date: Wed, 19 May 2021 19:43:56 -0400 4Subject: [PATCH] Remove fuzz testing from executing with ptests. 5 6Upstream version 2.9.12 introduced new fuzz-testing and a corresponding 7folder fuzz. These tests are not required for ptests of this package. 8 9This patch removes the fuzz testing targets from the Makefile. 10Otherwise, running the ptests will fail due to the invalid directory. 11 12Upstream-Status: Inappropriate [oe specific] 13Signed-off-by: Tony Tascioglu <tony.tascioglu@windriver.com> 14--- 15 Makefile.am | 5 ++--- 16 1 file changed, 2 insertions(+), 3 deletions(-) 17 18diff --git a/Makefile.am b/Makefile.am 19index a9284b95..3d7b344d 100644 20--- a/Makefile.am 21+++ b/Makefile.am 22@@ -2,9 +2,9 @@ 23 24 ACLOCAL_AMFLAGS = -I m4 25 26-SUBDIRS = include . doc example fuzz xstc $(PYTHON_SUBDIR) 27+SUBDIRS = include . doc example xstc $(PYTHON_SUBDIR) 28 29-DIST_SUBDIRS = include . doc example fuzz python xstc 30+DIST_SUBDIRS = include . doc example python xstc 31 32 AM_CPPFLAGS = -I$(top_builddir)/include -I$(srcdir)/include 33 34@@ -210,7 +210,6 @@ runtests: runtest$(EXEEXT) testrecurse$(EXEEXT) testapi$(EXEEXT) \ 35 $(CHECKER) ./runxmlconf$(EXEEXT) 36 @(if [ "$(PYTHON_SUBDIR)" != "" ] ; then cd python ; \ 37 $(MAKE) tests ; fi) 38- @cd fuzz; $(MAKE) tests 39 40 check: all runtests 41 42-- 432.25.1 44 45