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,