diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-09-16 16:41:17 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2025-09-16 23:39:29 +0200 |
| commit | a5bb7108a945cbc12fcba3d3bfe5eb3e2c9e9286 (patch) | |
| tree | 80443808285c9fbf1749ac8e142ccd0387bba917 | |
| parent | ab1946de924c7fe107299042c5312fa31f34b93e (diff) | |
| download | zig-a5bb7108a945cbc12fcba3d3bfe5eb3e2c9e9286.tar.gz zig-a5bb7108a945cbc12fcba3d3bfe5eb3e2c9e9286.zip | |
test: move glibc_compat from link to standalone tests
This is not really testing the linker.
| -rw-r--r-- | test/link/build.zig.zon | 3 | ||||
| -rw-r--r-- | test/standalone/build.zig.zon | 3 | ||||
| -rw-r--r-- | test/standalone/glibc_compat/build.zig (renamed from test/link/glibc_compat/build.zig) | 0 | ||||
| -rw-r--r-- | test/standalone/glibc_compat/glibc_runtime_check.c (renamed from test/link/glibc_compat/glibc_runtime_check.c) | 0 | ||||
| -rw-r--r-- | test/standalone/glibc_compat/glibc_runtime_check.zig (renamed from test/link/glibc_compat/glibc_runtime_check.zig) | 0 | ||||
| -rw-r--r-- | test/standalone/glibc_compat/main.c (renamed from test/link/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 index ab44726091..4005a7d55b 100644 --- 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 index b5778a34db..bf02cce0a5 100644 --- 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 index 6c2c924cae..6c2c924cae 100644 --- 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 index b65bb06e60..b65bb06e60 100644 --- 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 index 30265a3adc..30265a3adc 100644 --- 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 index 29ec920a58..29ec920a58 100644 --- a/test/link/glibc_compat/main.c +++ b/test/standalone/glibc_compat/main.c |
