blob: 0bce92a8ea0b6ba9790ee1bc2c6fcd8d76170cb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: "Jan Alexander Steffens (heftig)" <heftig@archlinux.org>
Date: Tue, 11 Apr 2023 21:59:24 +0000
Subject: [PATCH] HACK: Don't run fuzzing tests
They take way too long.
---
Makefile.am | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 5bc401813e6b..0d69d2cdf235 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -6,11 +6,8 @@ SUBDIRS = include . doc example xstc
if WITH_PYTHON
SUBDIRS += python
endif
-if WITH_GLOB
-SUBDIRS += fuzz
-endif
-DIST_SUBDIRS = include . doc example fuzz python xstc
+DIST_SUBDIRS = include . doc example python xstc
AM_CPPFLAGS = -I$(top_builddir)/include -I$(srcdir)/include -DSYSCONFDIR='"$(sysconfdir)"'
|