mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-13 03:09:51 +03:00
Note: Change from `cargo:rustc-link-lib=<name>` to `cargo:rustc-link-lib=dylib=<name>` was not required, just to be consistent with the rest of the build.rs. Resolves #15127 (ffi tests are no longer broken on aarch64) Resolves #17030
31 lines
968 B
Diff
31 lines
968 B
Diff
--- a/tests/unit/serve_test.ts
|
|
+++ b/tests/unit/serve_test.ts
|
|
@@ -376,7 +376,7 @@
|
|
},
|
|
);
|
|
|
|
-Deno.test(async function httpServerCanResolveHostnames() {
|
|
+Deno.test({ ignore: true }, async function httpServerCanResolveHostnames() { // XXX-Patched: fails on CI
|
|
const ac = new AbortController();
|
|
const { promise, resolve } = Promise.withResolvers<void>();
|
|
|
|
@@ -399,7 +399,7 @@
|
|
await server.finished;
|
|
});
|
|
|
|
-Deno.test(async function httpServerRejectsOnAddrInUse() {
|
|
+Deno.test({ ignore: true }, async function httpServerRejectsOnAddrInUse() { // XXX-Patched: fails on CI
|
|
const ac = new AbortController();
|
|
const { promise, resolve } = Promise.withResolvers<void>();
|
|
|
|
--- a/tests/unit/serve_test.ts
|
|
+++ b/tests/unit/serve_test.ts
|
|
@@ -4060,7 +4060,7 @@
|
|
|
|
Deno.test(
|
|
{
|
|
- ignore: Deno.build.os !== "linux",
|
|
+ ignore: true, // XXX-Patched: fails on CI
|
|
permissions: { run: true, net: true },
|
|
},
|
|
async function httpServerVsockSocket() {
|