Skip to content

Commit

Permalink
Last steps before 1.38
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoby committed Mar 8, 2024
1 parent 8370f27 commit 76ca2c6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Revision history for CPAN module Expect

1.38 2024-03-08
- Fix to fix to timeout code

1.37 2024-03-07
- Fix to timeout code

Expand Down
2 changes: 1 addition & 1 deletion lib/Expect.pm
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ use Scalar::Util qw/ looks_like_number /;
@Expect::EXPORT = qw(expect exp_continue exp_continue_timeout);

BEGIN {
$Expect::VERSION = '1.37';
$Expect::VERSION = '1.38';

# These are defaults which may be changed per object, or set as
# the user wishes.
Expand Down
2 changes: 1 addition & 1 deletion t/01-test.t
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ subtest eof_on_pty => sub {
# When we sleep 4 the above is still true, except that one of 12.2.1 machines returned 'timeout':
# http://www.cpantesters.org/cpan/report/6dba0d70-2d3d-11e4-8483-fe44e5e3eb0b
my $expected = 'timeout';
if ($Config{osname} =~ /^(freebsd|midnightbsd|dragonfly)$/) {
if ($Config{osname} =~ /^(freebsd|midnightbsd|dragonfly|aix)$/) {
$expected = 'eof';
}
if ($Config{osname} eq 'darwin' and $Config{osvers} lt '13') {
Expand Down

0 comments on commit 76ca2c6

Please sign in to comment.