summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2020-05-09 21:48:59 +0000
committerrillig <rillig@pkgsrc.org>2020-05-09 21:48:59 +0000
commitc7db5fda6ecb2584446ed5a25f01f469dd6ac092 (patch)
treef5de82f95d70b1b2ed57133e0148377e2b39e54a /regress
parent2a67eb001655f847b82dafcebe3e6519d2eca5ba (diff)
downloadpkgsrc-c7db5fda6ecb2584446ed5a25f01f469dd6ac092.tar.gz
regress/ignore-tools: remove
This regression test has been broken for a long time now. It tested the _TOOLS_OPSYS_INCOMPAT variable, which does not exist anymore.
Diffstat (limited to 'regress')
-rw-r--r--regress/ignore-tools/Makefile17
-rw-r--r--regress/ignore-tools/PLIST0
-rw-r--r--regress/ignore-tools/spec39
3 files changed, 0 insertions, 56 deletions
diff --git a/regress/ignore-tools/Makefile b/regress/ignore-tools/Makefile
deleted file mode 100644
index efcfbf483e0..00000000000
--- a/regress/ignore-tools/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-# $NetBSD: Makefile,v 1.2 2005/05/22 20:08:29 jlam Exp $
-#
-
-DISTNAME= regress-ignore-tools-0.0
-CATEGORIES= regress
-DISTFILES= #empty
-
-MAINTAINER= gavan@NetBSD.org
-COMMENT= Test circular dependency avoidance logic in tools.mk
-
-USE_TOOLS+= lex
-
-# Force dependencies
-_TOOLS_OPSYS_INCOMPAT.lex+= *-*-*
-_TOOLS_OPSYS_INCOMPAT.yacc+= *-*-*
-
-.include "../../mk/bsd.pkg.mk"
diff --git a/regress/ignore-tools/PLIST b/regress/ignore-tools/PLIST
deleted file mode 100644
index e69de29bb2d..00000000000
--- a/regress/ignore-tools/PLIST
+++ /dev/null
diff --git a/regress/ignore-tools/spec b/regress/ignore-tools/spec
deleted file mode 100644
index d1d8f1553bb..00000000000
--- a/regress/ignore-tools/spec
+++ /dev/null
@@ -1,39 +0,0 @@
-# $NetBSD: spec,v 1.2 2014/06/21 16:34:13 bsiegert Exp $
-
-# Trigger the circular dependency detection logic to fail the package build before
-# actually wasting time building anything.
-
-_PKGSRC_DEPS=`cd ../../devel/bison && ${TEST_MAKE} show-var VARNAME=PKGNAME`
-MAKEARGS_TEST="install _PKGSRC_DEPS=${_PKGSRC_DEPS}"
-MAKEARGS_CLEAN="clean clean-depends"
-
-# This test doesn't work if flex or bison are installed.
-
-if pkg_info -qe flex
-then
- MAKEARGS_TEST="PKG_FAIL_REASON=flex-must-be-deinstalled"
-fi
-
-if pkg_info -qe bison
-then
- MAKEARGS_TEST="PKG_FAIL_REASON=bison-must-be-deinstalled"
-fi
-
-check_result()
-{
-
-# This test should fail with a circular dependency error
-
-exit_status 1
-
-output_require "Required package bison"
-output_require "Circular dependency detected"
-
-# This test should not start configuring anything
-
-output_prohibit "Configuring for"
-output_prohibit "bison-must-be-deinstalled"
-output_prohibit "flex-must-be-deinstalled"
-
-}
-