File tree 2 files changed +4
-1
lines changed 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -431,7 +431,9 @@ test zeroes {
431
431
}
432
432
try testing .expectEqual (@as (@TypeOf (b .vector_u32 ), @splat (0 )), b .vector_u32 );
433
433
try testing .expectEqual (@as (@TypeOf (b .vector_f32 ), @splat (0.0 )), b .vector_f32 );
434
- try testing .expectEqual (@as (@TypeOf (b .vector_bool ), @splat (false )), b .vector_bool );
434
+ if (! (builtin .zig_backend == .stage2_llvm and builtin .cpu .arch == .hexagon )) {
435
+ try testing .expectEqual (@as (@TypeOf (b .vector_bool ), @splat (false )), b .vector_bool );
436
+ }
435
437
try testing .expectEqual (@as (? u8 , null ), b .optional_int );
436
438
for (b .sentinel ) | e | {
437
439
try testing .expectEqual (@as (u8 , 0 ), e );
Original file line number Diff line number Diff line change @@ -464,6 +464,7 @@ test "vector prefix scan" {
464
464
if (builtin .zig_backend == .stage2_x86_64 ) return error .SkipZigTest ;
465
465
if ((builtin .cpu .arch == .armeb or builtin .cpu .arch == .thumbeb ) and builtin .zig_backend == .stage2_llvm ) return error .SkipZigTest ; // https://github.com/ziglang/zig/issues/22060
466
466
if (builtin .cpu .arch == .aarch64_be and builtin .zig_backend == .stage2_llvm ) return error .SkipZigTest ; // https://github.com/ziglang/zig/issues/21893
467
+ if (builtin .zig_backend == .stage2_llvm and builtin .cpu .arch == .hexagon ) return error .SkipZigTest ;
467
468
468
469
if (builtin .cpu .arch .isMIPS ()) return error .SkipZigTest ;
469
470
You can’t perform that action at this time.
0 commit comments