| ... | @@ -40,7 +40,7 @@ const test_targets = blk: { | ... | @@ -40,7 +40,7 @@ const test_targets = blk: { |
| 40 | // getBaselineCpuFeatures calls populateDependencies which has a O(N ^ 2) algorithm | 40 | // getBaselineCpuFeatures calls populateDependencies which has a O(N ^ 2) algorithm |
| 41 | // (where N is roughly 160, which technically makes it O(1), but it adds up to a | 41 | // (where N is roughly 160, which technically makes it O(1), but it adds up to a |
| 42 | // lot of branches) | 42 | // lot of branches) |
| 43 | @setEvalBranchQuota(50000); | 43 | @setEvalBranchQuota(60000); |
| 44 | break :blk [_]TestTarget{ | 44 | break :blk [_]TestTarget{ |
| 45 | // Native Targets | 45 | // Native Targets |
| 46 | | 46 | |
| ... | @@ -397,16 +397,15 @@ const test_targets = blk: { | ... | @@ -397,16 +397,15 @@ const test_targets = blk: { |
| 397 | }) catch unreachable, | 397 | }) catch unreachable, |
| 398 | .link_libc = true, | 398 | .link_libc = true, |
| 399 | }, | 399 | }, |
| 400 | // Currently crashes in qemu-hexagon. | 400 | .{ |
| 401 | // .{ | 401 | .target = std.Target.Query.parse(.{ |
| 402 | // .target = std.Target.Query.parse(.{ | 402 | .arch_os_abi = "hexagon-linux-musl", |
| 403 | // .arch_os_abi = "hexagon-linux-musl", | 403 | .cpu_features = "baseline+long_calls", |
| 404 | // .cpu_features = "baseline+long_calls", | 404 | }) catch unreachable, |
| 405 | // }) catch unreachable, | 405 | .linkage = .dynamic, |
| 406 | // .linkage = .dynamic, | 406 | .link_libc = true, |
| 407 | // .link_libc = true, | 407 | .extra_target = true, |
| 408 | // .extra_target = true, | 408 | }, |
| 409 | // }, | | |
| 410 | | 409 | |
| 411 | .{ | 410 | .{ |
| 412 | .target = .{ | 411 | .target = .{ |