Commit f66377a
authored
test: skip GlvExtremeMagnitudeScalars on wasm to avoid suite timeout (#24304)
The wasm `ecc_tests` suite (`ScalarMultiplicationTest/1`, Grumpkin) is
tight on its wall-clock budget. `GlvExtremeMagnitudeScalars` ran ~50
magnitude probes, each followed by a naive-MSM comparison over 600
points, and tipped the suite over the `timeout` wrapper:
```
14:54:54 [ RUN ] ScalarMultiplicationTest/1.GlvExtremeMagnitudeScalars
14:54:57 timeout: sending signal TERM to command 'bash'
```
This skips the test on wasm via `GTEST_SKIP()` under `#ifdef __wasm__`,
matching the existing native-only pattern already used for the other
large synthetic-MSM cases in this file (e.g.
`BatchDriverSharedPathRagged`, the `MSMDedup*` cases). Native coverage
is unchanged.1 file changed
Lines changed: 3 additions & 0 deletions
Lines changed: 3 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1938 | 1938 | | |
1939 | 1939 | | |
1940 | 1940 | | |
| 1941 | + | |
| 1942 | + | |
| 1943 | + | |
1941 | 1944 | | |
1942 | 1945 | | |
1943 | 1946 | | |
| |||
0 commit comments