29 lines
966 B
Diff
29 lines
966 B
Diff
From 8ba14c6907ce131023aac96a5656f378603d8d26 Mon Sep 17 00:00:00 2001
|
|
From: Daan De Meyer <daan.j.demeyer@gmail.com>
|
|
Date: Fri, 10 Jan 2025 15:29:28 +0100
|
|
Subject: [PATCH] fmf: Skip TEST-21-DFUZZER
|
|
|
|
Similar to Github Actions, since we don't build with sanitizers in
|
|
the packit job, let's skip TEST-21-DFUZZER.
|
|
|
|
(cherry picked from commit e0c2fd6a3345d26afdf4159406c38cd9101d2e0d)
|
|
---
|
|
test/fmf/integration-tests/test.sh | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/test/fmf/integration-tests/test.sh b/test/fmf/integration-tests/test.sh
|
|
index 06a98bfd7a..f82961f959 100755
|
|
--- a/test/fmf/integration-tests/test.sh
|
|
+++ b/test/fmf/integration-tests/test.sh
|
|
@@ -124,6 +124,10 @@ else
|
|
NPROC="$((NPROC - 1))"
|
|
fi
|
|
|
|
+# This test is only really useful if we're building with sanitizers and takes a long time, so let's skip it
|
|
+# for now.
|
|
+export TEST_SKIP="TEST-21-DFUZZER"
|
|
+
|
|
# Create missing mountpoint for mkosi sandbox.
|
|
mkdir -p /etc/pacman.d/gnupg
|
|
|