aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/export.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-12-10 15:10:21 -0500
committerGitHub <noreply@github.com>2022-12-10 15:10:21 -0500
commitcffbb32d31495c83addae7ed3882dc000fb327aa (patch)
tree0f3c54e01f5384a064b0efbfc68d65ba982bb77e /test/behavior/export.zig
parentf1f17dc1c744defa89f65b2dc642ca0c1b7c1e44 (diff)
parentf9e9ba784f508e1b571a2fb64b55ad58c6ec74c8 (diff)
downloadzig-cffbb32d31495c83addae7ed3882dc000fb327aa.tar.gz
zig-cffbb32d31495c83addae7ed3882dc000fb327aa.zip
Merge pull request #13872 from koachan/sparc64-codegen
stage2: sparc64: Some Air lowerings + skip unbuildable tests
Diffstat (limited to 'test/behavior/export.zig')
-rw-r--r--test/behavior/export.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/behavior/export.zig b/test/behavior/export.zig
index 02d455236f..fb35fc6fc6 100644
--- a/test/behavior/export.zig
+++ b/test/behavior/export.zig
@@ -22,6 +22,8 @@ const PackedUnion = packed union {
};
test "packed struct, enum, union parameters in extern function" {
+ if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
+
testPackedStuff(&(PackedStruct{
.a = 1,
.b = 2,