diff options
author | rillig <rillig@pkgsrc.org> | 2020-06-29 20:51:24 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2020-06-29 20:51:24 +0000 |
commit | 39de0c5775b9398b1cd17df57b2132952d42b16d (patch) | |
tree | 2e048a8d6561bf584c918767cea777bf1016617e /regress/infra-unittests | |
parent | 32824b270e66f92c83b748c8fcb00e6d65a6eea3 (diff) | |
download | pkgsrc-39de0c5775b9398b1cd17df57b2132952d42b16d.tar.gz |
mk/haskell.mk: fix PLIST status detection
As seen in devel/hs-hashable/PLIST r1.1, which listed only the
package-description but not the package-id.
Diffstat (limited to 'regress/infra-unittests')
-rw-r--r-- | regress/infra-unittests/haskell.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/regress/infra-unittests/haskell.sh b/regress/infra-unittests/haskell.sh index fa21a26b563..b3347e5ebc1 100644 --- a/regress/infra-unittests/haskell.sh +++ b/regress/infra-unittests/haskell.sh @@ -1,5 +1,5 @@ #! /bin/sh -# $NetBSD: haskell.sh,v 1.3 2020/06/29 20:30:13 rillig Exp $ +# $NetBSD: haskell.sh,v 1.4 2020/06/29 20:51:25 rillig Exp $ # # Tests for mk/haskell.mk. # @@ -149,6 +149,9 @@ fi if test_case_begin 'PLIST status: outdated'; then # See devel/hs-hashable/PLIST, r1.1. + # In that file, there was only a package-description but not + # package-id. After the migration, it has both the + # package-description and the package-id. create_file 'Makefile' <<-EOF DISTNAME= hashable-1.3.0.0 @@ -165,9 +168,8 @@ if test_case_begin 'PLIST status: outdated'; then "$make" 'show-plist-status' 1> "$tmpdir/output" 2>&1 \ && exitcode=0 || exitcode=$? - # TODO: should be 'outdated' because of 'package-description' assert_that "$tmpdir/output" --file-is-lines \ - 'PLIST status: plain' + 'PLIST status: outdated' test_case_end fi |