| author | |
| committer | |
| log | 780f654e1907f8d6d194ca41e49fce09fd7066c5 |
| tree | 5c2de650b0037319e277f67343857ad5986a5536 |
| parent | c1a2da6b78d27d572cee38bb8cde2e46c842ffc0 |
Also reenable stage2_x86_64 windows behavior tests in case it is failing
for the same reason.
Closes #153242 files changed, 1 insertions(+), 8 deletions(-)
test/behavior/bugs/12776.zig+1| ... | @@ -32,6 +32,7 @@ test { | ... | @@ -32,6 +32,7 @@ test { |
| 32 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; | 32 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; |
| 33 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; | 33 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; |
| 34 | if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; | 34 | if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; |
| 35 | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; | ||
| 35 | 36 | ||
| 36 | var ram = try RAM.new(); | 37 | var ram = try RAM.new(); |
| 37 | var cpu = try CPU.new(&ram); | 38 | var cpu = try CPU.new(&ram); |
test/tests.zig-8| ... | @@ -942,14 +942,6 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { | ... | @@ -942,14 +942,6 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { |
| 942 | if (test_target.use_llvm == false and mem.eql(u8, options.name, "compiler-rt")) | 942 | if (test_target.use_llvm == false and mem.eql(u8, options.name, "compiler-rt")) |
| 943 | continue; | 943 | continue; |
| 944 | 944 | ||
| 945 | // TODO get the x86_64 self-hosted backend tests passing on Windows | ||
| 946 | if (test_target.target.getCpuArch() == .x86_64 and | ||
| 947 | test_target.target.getOsTag() == .windows and | ||
| 948 | test_target.use_llvm == false) | ||
| 949 | { | ||
| 950 | continue; | ||
| 951 | } | ||
| 952 | |||
| 953 | // TODO get compiler-rt tests passing for wasm32-wasi | 945 | // TODO get compiler-rt tests passing for wasm32-wasi |
| 954 | // currently causes "LLVM ERROR: Unable to expand fixed point multiplication." | 946 | // currently causes "LLVM ERROR: Unable to expand fixed point multiplication." |
| 955 | if (test_target.target.getCpuArch() == .wasm32 and | 947 | if (test_target.target.getCpuArch() == .wasm32 and |