From 7df2fbf6ad86d81ae62036f536839a79a63526a6 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Sat, 5 Jul 2008 14:01:30 -0700 Subject: [PATCH] Add nocheck build option to suppress build-time test suites Closes: #416450 --- policy.sgml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/policy.sgml b/policy.sgml index c9bd84f..ad5ba08 100644 --- a/policy.sgml +++ b/policy.sgml @@ -2028,6 +2028,11 @@

The meaning of the following tags has been standardized: + nocheck + + This tag says to not run any build-time test suite + provided by the package. + noopt The presence of this tag means that the package should @@ -2095,6 +2100,12 @@ ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) MAKEFLAGS += -j$(NUMJOBS) endif + +build: + # ... +ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) + # Code to run the package test suite. +endif

-- 2.39.5