Skip to content

Commit

Permalink
check jumpstart sends at the expected rate
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuho committed May 8, 2024
1 parent c499e2e commit 1e008c7
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion t/e2e.t
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,18 @@ subtest "slow-start" => sub {
for ([1000, 2, 2.3], [30000, 2.3, 3], [87000, 3.3, 4], [96000, 4, 4.5]);
};
});
}
};

subtest "jumpstart" => sub {
$each_cc->(sub {
my $cc = shift;
plan skip_all => "Cubic TODO respect app-limited (mandatory for jumpstart)"
if $cc eq "cubic";
my $guard = spawn_server("-C", "$cc:20:p", "--jumpstart-default", "80");
$doit->(@$_)
for ([1440 * 45, 2.5, 2.8], [1440 * 90, 3.0, 3.3]);
});
};
};

done_testing;
Expand Down

0 comments on commit 1e008c7

Please sign in to comment.