Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: mitigate flaky test-http-agent
Reduce number of clients from 100 to 16 as Raspberry Pi in CI starts to
exhibit flakiness around 22 or so clients.

Fixes: #5184
  • Loading branch information
Trott committed Feb 21, 2016
commit 76657c5eb70f57e113b7291e8cba84de9e4c9b53
3 changes: 1 addition & 2 deletions test/parallel/parallel.status
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@ test-tls-ticket-cluster : PASS,FLAKY
test-tick-processor : PASS,FLAKY

[$system==linux]
test-http-agent : PASS,FLAKY
test-process-getactivehandles : PASS,FLAKY
test-tick-processor : PASS,FLAKY
test-tick-processor : PASS,FLAKY

[$system==macos]

Expand Down
4 changes: 2 additions & 2 deletions test/parallel/test-http-agent.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ var server = http.Server(function(req, res) {
});

var responses = 0;
var N = 10;
var M = 10;
var N = 4;
var M = 4;

server.listen(common.PORT, function() {
for (var i = 0; i < N; i++) {
Expand Down