Commit 7d273b3
authored
fix(op-acceptor): ensure logs are written to disk for timeout cases (#540)
When tests timeout and CI kills the process (SIGKILL, exit code 137),
buffered writes in AsyncFile were being lost because the background
goroutine never had a chance to flush them.
This adds:
- AsyncFile.Flush() to block until queued writes are synced to disk
- FileLogger.FlushAll() to flush all async writers
- FileLogger.LogTestResultSync() for synchronous logging of timeout results
- Graceful shutdown flush in nat.Stop() to persist logs before exit
This ensures per-test log files exist in logs/testrun-*/failed/ even
when tests are terminated due to timeout.1 parent dc45976 commit 7d273b3
3 files changed
+56
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
129 | 129 | | |
130 | 130 | | |
131 | 131 | | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
132 | 156 | | |
133 | 157 | | |
134 | 158 | | |
| |||
246 | 270 | | |
247 | 271 | | |
248 | 272 | | |
| 273 | + | |
| 274 | + | |
| 275 | + | |
| 276 | + | |
| 277 | + | |
| 278 | + | |
| 279 | + | |
| 280 | + | |
| 281 | + | |
| 282 | + | |
| 283 | + | |
| 284 | + | |
| 285 | + | |
| 286 | + | |
249 | 287 | | |
250 | 288 | | |
251 | 289 | | |
| |||
277 | 315 | | |
278 | 316 | | |
279 | 317 | | |
| 318 | + | |
| 319 | + | |
| 320 | + | |
| 321 | + | |
| 322 | + | |
| 323 | + | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
280 | 327 | | |
281 | 328 | | |
282 | 329 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
784 | 784 | | |
785 | 785 | | |
786 | 786 | | |
| 787 | + | |
| 788 | + | |
| 789 | + | |
| 790 | + | |
| 791 | + | |
| 792 | + | |
| 793 | + | |
787 | 794 | | |
788 | 795 | | |
789 | 796 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
976 | 976 | | |
977 | 977 | | |
978 | 978 | | |
| 979 | + | |
979 | 980 | | |
980 | | - | |
| 981 | + | |
981 | 982 | | |
982 | 983 | | |
983 | 984 | | |
| |||
0 commit comments