Commit b4522c0
committed
fix(maestro): stop on-device screenrecord; raise android widget cap to 30m
The Android per-flow video recording left the on-device `screenrecord` running:
stop_recording only killed the local `adb shell` client, so the recorder kept
going until its --time-limit (180s) and `wait` blocked ~2.5 min PER FLOW. That
silently added ~15 min to multi-flow shards and pushed them past the 20-min cap
(mass "cancelled" widget shards). Fix: `adb shell pkill -INT screenrecord` to make
the recorder finalize the mp4 promptly, then a bounded client kill so we never
block on the time-limit again.
Also raise the android-widget-tests cap 20→30 min as a hard backstop. With the
recording bug fixed a healthy shard finishes far under this; hitting 30 now means
real app instability, not cap tightness.1 parent fbcf0f4 commit b4522c0
2 files changed
Lines changed: 19 additions & 11 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
624 | 624 | | |
625 | 625 | | |
626 | 626 | | |
627 | | - | |
628 | | - | |
629 | | - | |
630 | | - | |
631 | | - | |
632 | | - | |
633 | | - | |
| 627 | + | |
| 628 | + | |
| 629 | + | |
| 630 | + | |
| 631 | + | |
| 632 | + | |
634 | 633 | | |
635 | 634 | | |
636 | 635 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
55 | | - | |
56 | | - | |
57 | | - | |
58 | 55 | | |
59 | | - | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
60 | 64 | | |
61 | 65 | | |
62 | 66 | | |
63 | 67 | | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
64 | 73 | | |
65 | 74 | | |
66 | 75 | | |
| |||
0 commit comments