Skip to content

Commit

Permalink
behavior and langref: reenable previously-regressed tests on aarch64 …
Browse files Browse the repository at this point in the history
…and powerpc64le

Closes ziglang#3282
  • Loading branch information
wooster0 committed Dec 7, 2022
1 parent 38388b7 commit b7678d6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions doc/langref.html.in
Original file line number Diff line number Diff line change
Expand Up @@ -6241,10 +6241,6 @@ test "implicit unsigned integer to signed integer" {
}

test "float widening" {
// Note: there is an open issue preventing this from working on aarch64:
// https://github.com/ziglang/zig/issues/3282
if (builtin.target.cpu.arch == .aarch64) return error.SkipZigTest;

var a: f16 = 12.34;
var b: f32 = a;
var c: f64 = b;
Expand Down
4 changes: 0 additions & 4 deletions test/behavior/widening.zig
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,6 @@ test "float widening f16 to f128" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO

// TODO https://github.com/ziglang/zig/issues/3282
if (builtin.cpu.arch == .aarch64) return error.SkipZigTest;
if (builtin.cpu.arch == .powerpc64le) return error.SkipZigTest;

var x: f16 = 12.34;
var y: f128 = x;
try expect(x == y);
Expand Down

0 comments on commit b7678d6

Please sign in to comment.