Skip to content

Commit

Permalink
Eliminate failing http test
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Loring committed Apr 19, 2016
1 parent f2e65a2 commit 751807a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/non-interference/http-e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,12 @@ glob(test_glob, function(err, files) {
// max-headers-count: Breaks because we introduce new headers
// parser-free: Breaks because we send outgoing http on startup
// response-splitting: Breaks because we introduce new headers
// http-chunk-problem: Relies on shasum of own file
if (files[testCount].indexOf('parser-bad-ref') !== -1 ||
files[testCount].indexOf('max-headers-count') !== -1 ||
files[testCount].indexOf('parser-free') !== -1 ||
files[testCount].indexOf('response-splitting') !== -1) {
files[testCount].indexOf('response-splitting') !== -1 ||
files[testCount].indexOf('http-chunk-problem') !== -1) {
console.log('Skipped: ' + files[testCount]);
continue;
}
Expand Down

0 comments on commit 751807a

Please sign in to comment.