Commit a5bb7108a9

Alex Rønne Petersen <alex@alexrp.com>
2025-09-16 16:41:17
test: move glibc_compat from link to standalone tests
This is not really testing the linker.
1 parent ab1946d
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",
test/link/glibc_compat/build.zig → test/standalone/glibc_compat/build.zig
File renamed without changes
test/link/glibc_compat/glibc_runtime_check.c → test/standalone/glibc_compat/glibc_runtime_check.c
File renamed without changes
test/link/glibc_compat/glibc_runtime_check.zig → test/standalone/glibc_compat/glibc_runtime_check.zig
File renamed without changes
test/link/glibc_compat/main.c → test/standalone/glibc_compat/main.c
File renamed without changes
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",
         },