| ... | @@ -390,6 +390,13 @@ fn addFromDirInner( | ... | @@ -390,6 +390,13 @@ fn addFromDirInner( |
| 390 | // Cross-product to get all possible test combinations | 390 | // Cross-product to get all possible test combinations |
| 391 | for (backends) |backend| { | 391 | for (backends) |backend| { |
| 392 | for (targets) |target| { | 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 | const next = ctx.cases.items.len; | 400 | const next = ctx.cases.items.len; |
| 394 | try ctx.cases.append(.{ | 401 | try ctx.cases.append(.{ |
| 395 | .name = std.fs.path.stem(filename), | 402 | .name = std.fs.path.stem(filename), |