authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-06-20 15:34:29+01:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-06-24 10:20:56+01:00
log664c1d0198c1d5027167461cc0013faf5fc53347
treed2ea2ec63c74e6f320e288b5a73dee578bef6df6
parentc152fa02b7fd98be7ae37fd3e216cb714ed0a119
signaturelock-open Commit is signed but in an unrecognized format.

cbe: disable some failing tests


3 files changed, 6 insertions(+), 1 deletions(-)

lib/std/Random/RomuTrio.zig+2
......@@ -5,6 +5,7 @@
55const std = @import("std");
66const math = std.math;
77const RomuTrio = @This();
8const builtin = @import("builtin");
89
910x_state: u64,
1011y_state: u64,
......@@ -121,6 +122,7 @@ test fill {
121122}
122123
123124test "buf seeding test" {
125 if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
124126 const buf0: [24]u8 = @bitCast([3]u64{ 16294208416658607535, 13964609475759908645, 4703697494102998476 });
125127 const resulting_state = .{ .x = 16294208416658607535, .y = 13964609475759908645, .z = 4703697494102998476 };
126128 var r = RomuTrio.init(0);
lib/std/hash/xxhash.zig+3-1
......@@ -2,7 +2,6 @@ const std = @import("std");
22const builtin = @import("builtin");
33const mem = std.mem;
44const expectEqual = std.testing.expectEqual;
5const native_endian = builtin.cpu.arch.endian();
65
76const rotl = std.math.rotl;
87
......@@ -789,6 +788,7 @@ fn testExpect(comptime H: type, seed: anytype, input: []const u8, expected: u64)
789788}
790789
791790test "xxhash3" {
791 if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
792792 const H = XxHash3;
793793 // Non-Seeded Tests
794794 try testExpect(H, 0, "", 0x2d06800538d394c2);
......@@ -820,6 +820,7 @@ test "xxhash3" {
820820}
821821
822822test "xxhash3 smhasher" {
823 if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
823824 const Test = struct {
824825 fn do() !void {
825826 try expectEqual(verify.smhasher(XxHash3.hash), 0x9a636405);
......@@ -831,6 +832,7 @@ test "xxhash3 smhasher" {
831832}
832833
833834test "xxhash3 iterative api" {
835 if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
834836 const Test = struct {
835837 fn do() !void {
836838 try verify.iterativeApi(XxHash3);
test/behavior/vector.zig+1
......@@ -1620,6 +1620,7 @@ test "bitcast vector to array of smaller vectors" {
16201620 if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
16211621 if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
16221622 if (builtin.zig_backend == .stage2_spirv) return error.SkipZigTest;
1623 if (builtin.zig_backend == .stage2_c) return error.SkipZigTest;
16231624
16241625 const u8x32 = @Vector(32, u8);
16251626 const u8x64 = @Vector(64, u8);