From 0564b81e647ca883e20cce3cd50386de3431aabd Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Fri, 31 Oct 2025 22:24:32 -0800 Subject: [PATCH] node: stop skipping test-http-full-response.js on linux (#21154) [publish images] --- scripts/bootstrap.sh | 2 ++ test/js/node/test/parallel/test-http-full-response.js | 5 +---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 62cd622cc6..eff79ab94c 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -986,6 +986,7 @@ install_build_essentials() { xz-utils \ pkg-config \ golang + install_packages apache2-utils ;; dnf | yum) install_packages \ @@ -1013,6 +1014,7 @@ install_build_essentials() { ninja \ go \ xz + install_packages apache2-utils ;; esac diff --git a/test/js/node/test/parallel/test-http-full-response.js b/test/js/node/test/parallel/test-http-full-response.js index 0332f91c03..d54743b691 100644 --- a/test/js/node/test/parallel/test-http-full-response.js +++ b/test/js/node/test/parallel/test-http-full-response.js @@ -21,6 +21,7 @@ 'use strict'; const common = require('../common'); +if (common.isWindows) return; // TODO: BUN no 'ab' installed const assert = require('assert'); // This test requires the program 'ab' const http = require('http'); @@ -30,10 +31,6 @@ const bodyLength = 12345; const body = 'c'.repeat(bodyLength); -if (typeof Bun !== "undefined" && !Bun.which("ab")) { - common.skip("ab not found"); -} - const server = http.createServer(function(req, res) { res.writeHead(200, { 'Content-Length': bodyLength,