Skip to content

Commit

Permalink
stopping an infinite loop in OpenBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
david-dick committed Feb 27, 2024
1 parent b518014 commit 29450f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/04-proxy.t
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ SKIP: {
} or do {
chomp $@;
diag("Did not load webpage:$@");
redo AUTH_LOOP;
next AUTH_LOOP;
};
my $strip = $firefox->strip();
TODO: {
local $TODO = $ENV{FIREFOX_NO_WEB_AUTH} ? q[] : "Firefox can have race conditions for basic web auth";
ok($strip eq $nginx->content(), "Successfully retrieved web page through ssh and web proxies:$strip:");
if ($strip ne $nginx->content()) {
redo AUTH_LOOP;
next AUTH_LOOP;
}
}
ok($firefox->quit() == 0, "Firefox closed successfully");
Expand Down

0 comments on commit 29450f9

Please sign in to comment.