| author | |
| committer | |
| log | a8842b6cbf4242c2cfec203b21149872a6d2e246 |
| tree | 68d721456b48be1e48336c60bc629a53c50c25b1 |
| parent | 894406b9d3fec68d5390cb6b52a656aae534eeb1 |
Disable backends that don't support the new liveness format.1 files changed, 7 insertions(+), 0 deletions(-)
test/src/Cases.zig+7| ... | ... | @@ -390,6 +390,13 @@ fn addFromDirInner( |
| 390 | 390 | // Cross-product to get all possible test combinations |
| 391 | 391 | for (backends) |backend| { |
| 392 | 392 | for (targets) |target| { |
| 393 | if (backend == .stage2 and | |
| 394 | target.getCpuArch() != .wasm32 and target.getCpuArch() != .x86_64) | |
| 395 | { | |
| 396 | // Other backends don't support new liveness format | |
| 397 | continue; | |
| 398 | } | |
| 399 | ||
| 393 | 400 | const next = ctx.cases.items.len; |
| 394 | 401 | try ctx.cases.append(.{ |
| 395 | 402 | .name = std.fs.path.stem(filename), |