Skip to content

Commit

Permalink
perl: unskip test that works now
Browse files Browse the repository at this point in the history
as pointed out here:
#5177 (comment)
  • Loading branch information
lazka committed Feb 2, 2025
1 parent 74504c8 commit 8f0d849
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 22 deletions.
21 changes: 0 additions & 21 deletions perl/0006-perl-5.36.0-msys2.patch
Original file line number Diff line number Diff line change
Expand Up @@ -194,27 +194,6 @@ index 203d86b..9246a21 100644
is($p->ack(), '127.0.0.1', 'IP should be reachable');
}
}
diff --git a/dist/Term-ReadLine/t/ReadLine-STDERR.t b/dist/Term-ReadLine/t/ReadLine-STDERR.t
index 2bdf799..3637dc0 100644
--- a/dist/Term-ReadLine/t/ReadLine-STDERR.t
+++ b/dist/Term-ReadLine/t/ReadLine-STDERR.t
@@ -30,7 +30,7 @@ SKIP:
is_deeply \@out, [ q{/dev/tty}, q{/dev/tty} ], "findConsole is using /dev/tty";
}

-{
+SKIP: {
no warnings 'redefine';
my $donotexist = q[/this/should/not/exist/hopefully];

@@ -40,6 +40,7 @@ SKIP:
*Term::ReadLine::Stub::devtty = sub { $donotexist };
is( Term::ReadLine->devtty(), $donotexist, "devtty mocked" );

+ skip('console is CONIN$/CONOUT$ in MSYS2, not /dev/tty', 3) if $^O eq 'cygwin';
my @out = Term::ReadLine::Stub::findConsole();
is_deeply \@out, [ q{&STDIN}, q{&STDERR} ], "findConsole isn't using /dev/tty" or diag explain \@out;

diff --git a/ext/DynaLoader/DynaLoader_pm.PL b/ext/DynaLoader/DynaLoader_pm.PL
index 93a858a..c881f91 100644
--- a/ext/DynaLoader/DynaLoader_pm.PL
Expand Down
2 changes: 1 addition & 1 deletion perl/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ sha256sums=('d91115e90b896520e83d4de6b52f8254ef2b70a8d545ffab33200ea9f1cf29e8'
'a074ce00dabd7876293cf0fa8c8be26029992f51873e33cd2213b6acf60cafbb'
'1bf02b601f670cc1c8f65e63ec7a10578f92c8ecd8a5752fe331479bd6115311'
'e05e20b29c950555edfa246d2b9177188a4b265d1887c262f5b272f382696474'
'cec903d21d7e0436543892bf880c9a4801fe8d2c9a1cc887c7c1dfd3c554b2e1'
'4214c4f429958334837881c508b4d1c41cdd36f50f2e38458346dfa1fe05ae63'
'4c44801139321e77a3ade921ce93b114100346ad5b17d03a67b2a92b85ee8a27')

prepare() {
Expand Down

0 comments on commit 8f0d849

Please sign in to comment.