diff options
author | dillo <dillo@pkgsrc.org> | 2005-05-28 12:16:43 +0000 |
---|---|---|
committer | dillo <dillo@pkgsrc.org> | 2005-05-28 12:16:43 +0000 |
commit | 49472fc36630021f139ff5e9a0521fc65b2e4e10 (patch) | |
tree | 8ee8ae13711913ad3dc0cd7230730cf499af125e /regress/pkg-options/files | |
parent | 7940fef51ded34391d7867916b96e74ce805fa6e (diff) | |
download | pkgsrc-49472fc36630021f139ff5e9a0521fc65b2e4e10.tar.gz |
two new test cases:
- all: test overrides and PKG_LEGACY_VARS
- unsupported: test that unsupported option in PKG_OPTIONS.xxx causes failure
Diffstat (limited to 'regress/pkg-options/files')
-rw-r--r-- | regress/pkg-options/files/all.mk | 25 | ||||
-rw-r--r-- | regress/pkg-options/files/all.out | 1 | ||||
-rw-r--r-- | regress/pkg-options/files/unsupported.mk | 18 | ||||
-rw-r--r-- | regress/pkg-options/files/unsupported.out | 1 |
4 files changed, 45 insertions, 0 deletions
diff --git a/regress/pkg-options/files/all.mk b/regress/pkg-options/files/all.mk new file mode 100644 index 00000000000..3b34b5dceac --- /dev/null +++ b/regress/pkg-options/files/all.mk @@ -0,0 +1,25 @@ +# $NetBSD: all.mk,v 1.1 2005/05/28 12:16:43 dillo Exp $ +# +# This file test a very simple options configuration. +# + +MAKECONF= /dev/null + +PKG_OPTIONS_LEGACY_VARS+=USE_F:f +PKG_OPTIONS_LEGACY_VARS+=USE_G:g +PKG_OPTIONS_LEGACY_VARS+=NO_H:-h + +PKG_OPTIONS_VAR= PKG_OPTIONS.foo +PKG_SUPPORTED_OPTIONS= a b c d e f g h +PKG_SUGGESTED_OPTIONS= b c e h +PKG_DEFAULT_OPTIONS= a -b d +PKG_OPTIONS.foo= -c -d f -g +USE_F=YES +USE_G=YES +NO_H=YES + +.include "../../mk/bsd.options.mk" + +.PHONY: test +test: + echo ${PKG_OPTIONS:M*:Q} diff --git a/regress/pkg-options/files/all.out b/regress/pkg-options/files/all.out new file mode 100644 index 00000000000..cd0f28555d0 --- /dev/null +++ b/regress/pkg-options/files/all.out @@ -0,0 +1 @@ +a e f diff --git a/regress/pkg-options/files/unsupported.mk b/regress/pkg-options/files/unsupported.mk new file mode 100644 index 00000000000..14a307e8f76 --- /dev/null +++ b/regress/pkg-options/files/unsupported.mk @@ -0,0 +1,18 @@ +# $NetBSD: unsupported.mk,v 1.1 2005/05/28 12:16:43 dillo Exp $ +# +# This file test the effect of the PKG_DEFAULT_OPTIONS variable. +# + +MAKECONF= /dev/null + +PKG_SUPPORTED_OPTIONS= a +PKG_SUGGESTED_OPTIONS= +PKG_OPTIONS_VAR= PKG_OPTIONS.foo +PKG_DEFAULT_OPTIONS= +PKG_OPTIONS.foo= b + +.include "../../mk/bsd.options.mk" + +.PHONY: test +test: + echo ${PKG_FAIL_REASON:Q} diff --git a/regress/pkg-options/files/unsupported.out b/regress/pkg-options/files/unsupported.out new file mode 100644 index 00000000000..7892fcb5214 --- /dev/null +++ b/regress/pkg-options/files/unsupported.out @@ -0,0 +1 @@ +The following selected options are not supported: b |