zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit a5bb7108a945cbc12fcba3d3bfe5eb3e2c9e9286 (tree)
parent ab1946de924c7fe107299042c5312fa31f34b93e
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Tue, 16 Sep 2025 16:41:17 +0200

test: move glibc_compat from link to standalone tests

This is not really testing the linker.

Diffstat:
Mtest/link/build.zig.zon | 3---
Mtest/standalone/build.zig.zon | 3+++
Rtest/link/glibc_compat/build.zig -> test/standalone/glibc_compat/build.zig | 0
Rtest/link/glibc_compat/glibc_runtime_check.c -> test/standalone/glibc_compat/glibc_runtime_check.c | 0
Rtest/link/glibc_compat/glibc_runtime_check.zig -> test/standalone/glibc_compat/glibc_runtime_check.zig | 0
Rtest/link/glibc_compat/main.c -> test/standalone/glibc_compat/main.c | 0
6 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/test/link/build.zig.zon b/test/link/build.zig.zon @@ -15,9 +15,6 @@ .static_libs_from_object_files = .{ .path = "static_libs_from_object_files", }, - .glibc_compat = .{ - .path = "glibc_compat", - }, // WASM Cases .wasm_archive = .{ .path = "wasm/archive", diff --git a/test/standalone/build.zig.zon b/test/standalone/build.zig.zon @@ -49,6 +49,9 @@ .pkg_import = .{ .path = "pkg_import", }, + .glibc_compat = .{ + .path = "glibc_compat", + }, .install_raw_hex = .{ .path = "install_raw_hex", }, diff --git a/test/link/glibc_compat/build.zig b/test/standalone/glibc_compat/build.zig diff --git a/test/link/glibc_compat/glibc_runtime_check.c b/test/standalone/glibc_compat/glibc_runtime_check.c diff --git a/test/link/glibc_compat/glibc_runtime_check.zig b/test/standalone/glibc_compat/glibc_runtime_check.zig diff --git a/test/link/glibc_compat/main.c b/test/standalone/glibc_compat/main.c