Skip to content

Commit

Permalink
Skip failing behaviour tests
Browse files Browse the repository at this point in the history
Disables the two behaviour tests which are caused to fail on the x86_64 backend
by ziglang#19498. Fixing the underlying issue is not within the scope of this pull request.
  • Loading branch information
ominitay committed Apr 17, 2024
1 parent b87e549 commit 726b436
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/behavior/deposit_extract_bits.zig
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ test "@depositBits" {

test "@depositBits u128" {
if (!supports_pext_pdep) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_x86_64 and builtin.target.os.tag == .windows) return error.SkipZigTest; // TODO #19498

const S = struct {
pub fn doTheTest() !void {
Expand Down Expand Up @@ -108,6 +109,7 @@ test "@extractBits" {

test "@extractBits u128" {
if (!supports_pext_pdep) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_x86_64 and builtin.target.os.tag == .windows) return error.SkipZigTest; // TODO #19498

const S = struct {
pub fn doTheTest() !void {
Expand Down

0 comments on commit 726b436

Please sign in to comment.