| ... | ... | @@ -748,8 +748,6 @@ test "zig fmt: anon literal in array" { |
| 748 | 748 | } |
| 749 | 749 | |
| 750 | 750 | test "zig fmt: alignment in anonymous literal" { |
| 751 | | if (@import("builtin").zig_backend == .stage2_x86_64) return error.SkipZigTest; |
| 752 | | |
| 753 | 751 | try testTransform( |
| 754 | 752 | \\const a = .{ |
| 755 | 753 | \\ "U", "L", "F", |
| ... | ... | @@ -1953,8 +1951,6 @@ test "zig fmt: struct literal containing a multiline expression" { |
| 1953 | 1951 | } |
| 1954 | 1952 | |
| 1955 | 1953 | test "zig fmt: array literal with hint" { |
| 1956 | | if (@import("builtin").zig_backend == .stage2_x86_64) return error.SkipZigTest; |
| 1957 | | |
| 1958 | 1954 | try testTransform( |
| 1959 | 1955 | \\const a = []u8{ |
| 1960 | 1956 | \\ 1, 2, // |
| ... | ... | @@ -2032,8 +2028,6 @@ test "zig fmt: array literal with hint" { |
| 2032 | 2028 | } |
| 2033 | 2029 | |
| 2034 | 2030 | test "zig fmt: array literal vertical column alignment" { |
| 2035 | | if (@import("builtin").zig_backend == .stage2_x86_64) return error.SkipZigTest; |
| 2036 | | |
| 2037 | 2031 | try testTransform( |
| 2038 | 2032 | \\const a = []u8{ |
| 2039 | 2033 | \\ 1000, 200, |
| ... | ... | @@ -2266,8 +2260,6 @@ test "zig fmt: slice align" { |
| 2266 | 2260 | } |
| 2267 | 2261 | |
| 2268 | 2262 | test "zig fmt: add trailing comma to array literal" { |
| 2269 | | if (@import("builtin").zig_backend == .stage2_x86_64) return error.SkipZigTest; |
| 2270 | | |
| 2271 | 2263 | try testTransform( |
| 2272 | 2264 | \\comptime { |
| 2273 | 2265 | \\ return []u16{'m', 's', 'y', 's', '-' // hi |
| ... | ... | @@ -3803,8 +3795,6 @@ test "zig fmt: fix single statement if/for/while line breaks" { |
| 3803 | 3795 | } |
| 3804 | 3796 | |
| 3805 | 3797 | test "zig fmt: anon struct/array literal in if" { |
| 3806 | | if (@import("builtin").zig_backend == .stage2_x86_64) return error.SkipZigTest; |
| 3807 | | |
| 3808 | 3798 | try testCanonical( |
| 3809 | 3799 | \\test { |
| 3810 | 3800 | \\ const a = if (cond) .{ |
| ... | ... | @@ -4699,8 +4689,6 @@ test "zig fmt: regression test for #8974" { |
| 4699 | 4689 | } |
| 4700 | 4690 | |
| 4701 | 4691 | test "zig fmt: allow trailing line comments to do manual array formatting" { |
| 4702 | | if (@import("builtin").zig_backend == .stage2_x86_64) return error.SkipZigTest; |
| 4703 | | |
| 4704 | 4692 | try testCanonical( |
| 4705 | 4693 | \\fn foo() void { |
| 4706 | 4694 | \\ self.code.appendSliceAssumeCapacity(&[_]u8{ |
| ... | ... | @@ -4739,8 +4727,6 @@ test "zig fmt: allow trailing line comments to do manual array formatting" { |
| 4739 | 4727 | } |
| 4740 | 4728 | |
| 4741 | 4729 | test "zig fmt: multiline string literals should play nice with array initializers" { |
| 4742 | | if (@import("builtin").zig_backend == .stage2_x86_64) return error.SkipZigTest; |
| 4743 | | |
| 4744 | 4730 | try testCanonical( |
| 4745 | 4731 | \\fn main() void { |
| 4746 | 4732 | \\ var a = .{.{.{.{.{.{.{.{ |