From owner-svn-ports-all@freebsd.org Wed Nov 21 16:37:36 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 835C6113DBBF; Wed, 21 Nov 2018 16:37:36 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 23374873D1; Wed, 21 Nov 2018 16:37:36 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DA39B22EBD; Wed, 21 Nov 2018 16:37:35 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wALGbZw7033957; Wed, 21 Nov 2018 16:37:35 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wALGbZZm033954; Wed, 21 Nov 2018 16:37:35 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201811211637.wALGbZZm033954@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 21 Nov 2018 16:37:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485521 - in head/lang: perl5-devel/files perl5.24/files perl5.26/files perl5.28/files X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head/lang: perl5-devel/files perl5.24/files perl5.26/files perl5.28/files X-SVN-Commit-Revision: 485521 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 23374873D1 X-Spamd-Result: default: False [0.60 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_SPAM_LONG(0.00)[0.001,0]; NEURAL_SPAM_MEDIUM(0.25)[0.253,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_SPAM_SHORT(0.34)[0.342,0] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Nov 2018 16:37:36 -0000 Author: mat Date: Wed Nov 21 16:37:34 2018 New Revision: 485521 URL: https://svnweb.freebsd.org/changeset/ports/485521 Log: Remove two unimportant failing tests. Added: head/lang/perl5-devel/files/patch-ext_GDBM__File_t_fatal.t (contents, props changed) head/lang/perl5.24/files/patch-ext_GDBM__File_t_fatal.t (contents, props changed) head/lang/perl5.26/files/patch-ext_GDBM__File_t_fatal.t (contents, props changed) head/lang/perl5.28/files/patch-ext_GDBM__File_t_fatal.t (contents, props changed) Added: head/lang/perl5-devel/files/patch-ext_GDBM__File_t_fatal.t ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/perl5-devel/files/patch-ext_GDBM__File_t_fatal.t Wed Nov 21 16:37:34 2018 (r485521) @@ -0,0 +1,30 @@ +Those two test fails starting with gdbm 1.15. + +--- ext/GDBM_File/t/fatal.t.orig 2018-11-21 14:08:44 UTC ++++ ext/GDBM_File/t/fatal.t +@@ -12,7 +12,7 @@ BEGIN { + plan(skip_all => "GDBM_File is flaky in $^O") + if $^O =~ /darwin/; + +- plan(tests => 8); ++ plan(tests => 6); + use_ok('GDBM_File'); + } + +@@ -34,16 +34,5 @@ isnt((open $fh, "<&=$fileno"), undef, "d + or diag("\$! = $!"); + isnt(close $fh, undef, + "close fileno $fileno, out from underneath the GDBM_File"); +-is(eval { +- $h{Perl} = 'Rules'; +- untie %h; +- 1; +-}, undef, 'Trapped error when attempting to write to knobbled GDBM_File'); +- +-# Observed "File write error" and "lseek error" from two different systems. +-# So there might be more variants. Important part was that we trapped the error +-# via croak. +-like($@, qr/ at .*\bfatal\.t line \d+\.\n\z/, +- 'expected error message from GDBM_File'); + + unlink ; Added: head/lang/perl5.24/files/patch-ext_GDBM__File_t_fatal.t ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/perl5.24/files/patch-ext_GDBM__File_t_fatal.t Wed Nov 21 16:37:34 2018 (r485521) @@ -0,0 +1,30 @@ +Those two test fails starting with gdbm 1.15. + +--- ext/GDBM_File/t/fatal.t.orig 2018-03-23 19:37:49 UTC ++++ ext/GDBM_File/t/fatal.t +@@ -12,7 +12,7 @@ BEGIN { + plan(skip_all => "GDBM_File is flaky in $^O") + if $^O =~ /darwin/; + +- plan(tests => 8); ++ plan(tests => 6); + use_ok('GDBM_File'); + } + +@@ -34,16 +34,5 @@ isnt((open $fh, "<&=$fileno"), undef, "d + or diag("\$! = $!"); + isnt(close $fh, undef, + "close fileno $fileno, out from underneath the GDBM_File"); +-is(eval { +- $h{Perl} = 'Rules'; +- untie %h; +- 1; +-}, undef, 'Trapped error when attempting to write to knobbled GDBM_File'); +- +-# Observed "File write error" and "lseek error" from two different systems. +-# So there might be more variants. Important part was that we trapped the error +-# via croak. +-like($@, qr/ at .*\bfatal\.t line \d+\.\n\z/, +- 'expected error message from GDBM_File'); + + unlink ; Added: head/lang/perl5.26/files/patch-ext_GDBM__File_t_fatal.t ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/perl5.26/files/patch-ext_GDBM__File_t_fatal.t Wed Nov 21 16:37:34 2018 (r485521) @@ -0,0 +1,30 @@ +Those two test fails starting with gdbm 1.15. + +--- ext/GDBM_File/t/fatal.t.orig 2018-03-23 19:34:32 UTC ++++ ext/GDBM_File/t/fatal.t +@@ -12,7 +12,7 @@ BEGIN { + plan(skip_all => "GDBM_File is flaky in $^O") + if $^O =~ /darwin/; + +- plan(tests => 8); ++ plan(tests => 6); + use_ok('GDBM_File'); + } + +@@ -34,16 +34,5 @@ isnt((open $fh, "<&=$fileno"), undef, "d + or diag("\$! = $!"); + isnt(close $fh, undef, + "close fileno $fileno, out from underneath the GDBM_File"); +-is(eval { +- $h{Perl} = 'Rules'; +- untie %h; +- 1; +-}, undef, 'Trapped error when attempting to write to knobbled GDBM_File'); +- +-# Observed "File write error" and "lseek error" from two different systems. +-# So there might be more variants. Important part was that we trapped the error +-# via croak. +-like($@, qr/ at .*\bfatal\.t line \d+\.\n\z/, +- 'expected error message from GDBM_File'); + + unlink ; Added: head/lang/perl5.28/files/patch-ext_GDBM__File_t_fatal.t ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/perl5.28/files/patch-ext_GDBM__File_t_fatal.t Wed Nov 21 16:37:34 2018 (r485521) @@ -0,0 +1,30 @@ +Those two test fails starting with gdbm 1.15. + +--- ext/GDBM_File/t/fatal.t.orig 2018-05-21 10:44:04 UTC ++++ ext/GDBM_File/t/fatal.t +@@ -12,7 +12,7 @@ BEGIN { + plan(skip_all => "GDBM_File is flaky in $^O") + if $^O =~ /darwin/; + +- plan(tests => 8); ++ plan(tests => 6); + use_ok('GDBM_File'); + } + +@@ -34,16 +34,5 @@ isnt((open $fh, "<&=$fileno"), undef, "d + or diag("\$! = $!"); + isnt(close $fh, undef, + "close fileno $fileno, out from underneath the GDBM_File"); +-is(eval { +- $h{Perl} = 'Rules'; +- untie %h; +- 1; +-}, undef, 'Trapped error when attempting to write to knobbled GDBM_File'); +- +-# Observed "File write error" and "lseek error" from two different systems. +-# So there might be more variants. Important part was that we trapped the error +-# via croak. +-like($@, qr/ at .*\bfatal\.t line \d+\.\n\z/, +- 'expected error message from GDBM_File'); + + unlink ;