@@ -528,10 +528,6 @@ pub fn shl(comptime T: type, a: T, shift_amt: anytype) T {
528
528
}
529
529
530
530
test "shl" {
531
- if (builtin .zig_backend == .stage2_llvm and builtin .cpu .arch == .aarch64 ) {
532
- // https://github.com/ziglang/zig/issues/12012
533
- return error .SkipZigTest ;
534
- }
535
531
try testing .expect (shl (u8 , 0b11111111 , @as (usize , 3 )) == 0b11111000 );
536
532
try testing .expect (shl (u8 , 0b11111111 , @as (usize , 8 )) == 0 );
537
533
try testing .expect (shl (u8 , 0b11111111 , @as (usize , 9 )) == 0 );
@@ -572,10 +568,6 @@ pub fn shr(comptime T: type, a: T, shift_amt: anytype) T {
572
568
}
573
569
574
570
test "shr" {
575
- if (builtin .zig_backend == .stage2_llvm and builtin .cpu .arch == .aarch64 ) {
576
- // https://github.com/ziglang/zig/issues/12012
577
- return error .SkipZigTest ;
578
- }
579
571
try testing .expect (shr (u8 , 0b11111111 , @as (usize , 3 )) == 0b00011111 );
580
572
try testing .expect (shr (u8 , 0b11111111 , @as (usize , 8 )) == 0 );
581
573
try testing .expect (shr (u8 , 0b11111111 , @as (usize , 9 )) == 0 );
@@ -617,10 +609,6 @@ pub fn rotr(comptime T: type, x: T, r: anytype) T {
617
609
}
618
610
619
611
test "rotr" {
620
- if (builtin .zig_backend == .stage2_llvm and builtin .cpu .arch == .aarch64 ) {
621
- // https://github.com/ziglang/zig/issues/12012
622
- return error .SkipZigTest ;
623
- }
624
612
try testing .expect (rotr (u0 , 0b0 , @as (usize , 3 )) == 0b0 );
625
613
try testing .expect (rotr (u5 , 0b00001 , @as (usize , 0 )) == 0b00001 );
626
614
try testing .expect (rotr (u6 , 0b000001 , @as (usize , 7 )) == 0b100000 );
@@ -661,10 +649,6 @@ pub fn rotl(comptime T: type, x: T, r: anytype) T {
661
649
}
662
650
663
651
test "rotl" {
664
- if (builtin .zig_backend == .stage2_llvm and builtin .cpu .arch == .aarch64 ) {
665
- // https://github.com/ziglang/zig/issues/12012
666
- return error .SkipZigTest ;
667
- }
668
652
try testing .expect (rotl (u0 , 0b0 , @as (usize , 3 )) == 0b0 );
669
653
try testing .expect (rotl (u5 , 0b00001 , @as (usize , 0 )) == 0b00001 );
670
654
try testing .expect (rotl (u6 , 0b000001 , @as (usize , 7 )) == 0b000010 );
@@ -1687,10 +1671,6 @@ fn testSign() !void {
1687
1671
}
1688
1672
1689
1673
test "sign" {
1690
- if (builtin .zig_backend == .stage2_llvm ) {
1691
- // https://github.com/ziglang/zig/issues/12012
1692
- return error .SkipZigTest ;
1693
- }
1694
1674
try testSign ();
1695
1675
comptime try testSign ();
1696
1676
}
0 commit comments