diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2015-10-11 11:47:22 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2015-10-11 11:47:22 +0000 |
commit | 25fb96c7911f55108557771b66c54d7419bc3e5e (patch) | |
tree | 8cd3bb56d74086f3c66293412b45736ff3ede83e /regress/usr.bin/pkg-config | |
parent | 4045eb7e420cd4d0c5212a0b2bc8969eb2849b60 (diff) |
add variation on existing --exists tests; separated by spaces
Diffstat (limited to 'regress/usr.bin/pkg-config')
-rw-r--r-- | regress/usr.bin/pkg-config/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/regress/usr.bin/pkg-config/Makefile b/regress/usr.bin/pkg-config/Makefile index 162ba479eff..5eef8570176 100644 --- a/regress/usr.bin/pkg-config/Makefile +++ b/regress/usr.bin/pkg-config/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.51 2015/10/10 12:20:10 jasper Exp $ +# $OpenBSD: Makefile,v 1.52 2015/10/11 11:47:21 jasper Exp $ REGRESS_TARGETS=cmp-vers1-1 \ cmp-vers1-2 \ @@ -76,6 +76,7 @@ REGRESS_TARGETS=cmp-vers1-1 \ find-config-2 \ find-config-3 \ find-config-4 \ + find-config-5 \ variable-get-1 \ variable-set \ variables-1 \ @@ -523,11 +524,15 @@ find-config-2: find-config-3: # Simple existential test - ${VPCONFIG} --exists vers1 + @${VPCONFIG} --exists vers1 find-config-4: - # Multiple existential tests combined - ${VPCONFIG} --exists vers1,vers2 + # Multiple existential tests combined (with comma) + @${VPCONFIG} --exists vers1,vers2 + +find-config-5: + # Multiple existential tests combined (with space) + @${VPCONFIG} --exists vers1 vers2 variable-get-1: # Test --variable |