| ... | @@ -200,6 +200,7 @@ const module_test_targets = blk: { | ... | @@ -200,6 +200,7 @@ const module_test_targets = blk: { |
| 200 | // .use_lld = false, | 200 | // .use_lld = false, |
| 201 | // .optimize_mode = .ReleaseFast, | 201 | // .optimize_mode = .ReleaseFast, |
| 202 | // .strip = true, | 202 | // .strip = true, |
| | 203 | // .skip_modules = &.{"std"}, // TODO get these passing |
| 203 | //}, | 204 | //}, |
| 204 | //.{ | 205 | //.{ |
| 205 | // .target = .{ | 206 | // .target = .{ |
| ... | @@ -212,6 +213,7 @@ const module_test_targets = blk: { | ... | @@ -212,6 +213,7 @@ const module_test_targets = blk: { |
| 212 | // .use_lld = false, | 213 | // .use_lld = false, |
| 213 | // .optimize_mode = .ReleaseFast, | 214 | // .optimize_mode = .ReleaseFast, |
| 214 | // .strip = true, | 215 | // .strip = true, |
| | 216 | // .skip_modules = &.{"std"}, // TODO get these passing |
| 215 | //}, | 217 | //}, |
| 216 | | 218 | |
| 217 | .{ | 219 | .{ |
| ... | @@ -2663,11 +2665,6 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { | ... | @@ -2663,11 +2665,6 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { |
| 2663 | if (options.skip_single_threaded and test_target.single_threaded == true) | 2665 | if (options.skip_single_threaded and test_target.single_threaded == true) |
| 2664 | continue; | 2666 | continue; |
| 2665 | | 2667 | |
| 2666 | if (!would_use_llvm and target.cpu.arch == .aarch64) { | | |
| 2667 | // TODO get std tests passing for the aarch64 self-hosted backend. | | |
| 2668 | if (mem.eql(u8, options.name, "std")) continue; | | |
| 2669 | } | | |
| 2670 | | | |
| 2671 | const want_this_mode = for (options.optimize_modes) |m| { | 2668 | const want_this_mode = for (options.optimize_modes) |m| { |
| 2672 | if (m == test_target.optimize_mode) break true; | 2669 | if (m == test_target.optimize_mode) break true; |
| 2673 | } else false; | 2670 | } else false; |