node: stop skipping test-http-full-response.js on linux (#21154) [publish images]

This commit is contained in:
Meghan Denny
2025-10-31 22:24:32 -08:00
committed by GitHub
parent 7c9e8a2b10
commit 0564b81e64
2 changed files with 3 additions and 4 deletions

View File

@@ -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

View File

@@ -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,