Skip to content

Commit

Permalink
tests: skip t/stream/process-type-hup.t in check leak mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
jiahao committed Aug 1, 2024
1 parent 71a0bdc commit 8ebb029
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion t/stream/process-type-hup.t
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# vim:set ft= ts=4 sw=4 et fdm=marker:

our $SkipReason;

BEGIN {
if ($ENV{TEST_NGINX_CHECK_LEAK}) {
$SkipReason = "unavailable for the hup tests";
}
}

use lib '.';
use t::TestCore::Stream;
use t::TestCore::Stream $SkipReason ? (skip_all => $SkipReason) : ();

repeat_each(2);

Expand Down

0 comments on commit 8ebb029

Please sign in to comment.