aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2024-01-01 15:36:16 -0800
committerGitHub <noreply@github.com>2024-01-01 15:36:16 -0800
commit7161ed79c4abcaccdd56fe0b4fbd3d93472d41b8 (patch)
tree0844cb58bfcb9ac48fc517738c0b78ff677007ab /test
parent3f2a65594e1d3c0a4f4943a4ea522e8405db81e0 (diff)
parent50e2fb8fd0e1aae5fc3123d6f26d7420d4baa41c (diff)
downloadzig-7161ed79c4abcaccdd56fe0b4fbd3d93472d41b8.tar.gz
zig-7161ed79c4abcaccdd56fe0b4fbd3d93472d41b8.zip
Merge pull request #17824 from kcbanner/fixup_msvc_fmax
cbe: add a system for avoiding collisions with C compiler intrinsics
Diffstat (limited to 'test')
-rw-r--r--test/behavior/bugs/12680.zig5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/behavior/bugs/12680.zig b/test/behavior/bugs/12680.zig
index e75cf6ec3b..883303c4f8 100644
--- a/test/behavior/bugs/12680.zig
+++ b/test/behavior/bugs/12680.zig
@@ -12,11 +12,6 @@ test "export a function twice" {
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf) return error.SkipZigTest;
- if (builtin.os.tag == .macos and builtin.zig_backend == .stage2_c) {
- // TODO: test.c: error: aliases are not supported on darwin
- return error.SkipZigTest;
- }
-
// If it exports the function correctly, `test_func` and `testFunc` will points to the same address.
try expectEqual(test_func(), other_file.testFunc());
}