| ... | ... | @@ -200,6 +200,7 @@ const module_test_targets = blk: { |
| 200 | 200 | // .use_lld = false, |
| 201 | 201 | // .optimize_mode = .ReleaseFast, |
| 202 | 202 | // .strip = true, |
| 203 | // .skip_modules = &.{"std"}, // TODO get these passing |
| 203 | 204 | //}, |
| 204 | 205 | //.{ |
| 205 | 206 | // .target = .{ |
| ... | ... | @@ -212,6 +213,7 @@ const module_test_targets = blk: { |
| 212 | 213 | // .use_lld = false, |
| 213 | 214 | // .optimize_mode = .ReleaseFast, |
| 214 | 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 | 2665 | if (options.skip_single_threaded and test_target.single_threaded == true) |
| 2664 | 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 | 2668 | const want_this_mode = for (options.optimize_modes) |m| { |
| 2672 | 2669 | if (m == test_target.optimize_mode) break true; |
| 2673 | 2670 | } else false; |