Skip to content

Commit 60af427

Browse files
committed
mark two behavior tests as passing
1 parent a4ff948 commit 60af427

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test/behavior/eval.zig

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -646,8 +646,6 @@ pub fn TypeWithCompTimeSlice(comptime field_name: []const u8) type {
646646
}
647647

648648
test "comptime function with mutable pointer is not memoized" {
649-
if (builtin.zig_backend != .stage1) return error.SkipZigTest; // TODO
650-
651649
comptime {
652650
var x: i32 = 1;
653651
const ptr = &x;
@@ -662,8 +660,6 @@ fn increment(value: *i32) void {
662660
}
663661

664662
test "const ptr to comptime mutable data is not memoized" {
665-
if (builtin.zig_backend != .stage1) return error.SkipZigTest; // TODO
666-
667663
comptime {
668664
var foo = SingleFieldStruct{ .x = 1 };
669665
try expect(foo.read_x() == 1);

0 commit comments

Comments
 (0)