disable test on C backend

This test was previously incorrect and was not testing the intended instruction.
This commit is contained in:
Veikka Tuominen 2023-05-25 18:49:18 +03:00
parent 4a3539e449
commit 230ea411f7

View File

@ -1293,6 +1293,7 @@ test "store packed vector element" {
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
var v = @Vector(4, u1){ 1, 1, 1, 1 };
try expectEqual(@Vector(4, u1){ 1, 1, 1, 1 }, v);