sagudev
sagudev
I think we could use https://github.com/servo/mozjs/issues/520#issuecomment-2702746832 to prevent borrow GC hazards in compile time (more specifically borrow_mut would borrow cx, thus preventing any GC happening while borrow_mut lives). For this...
I am not very familiar with it, but would it be possible to use servo's tests/wpt folder from wpt.py (and servo's expectations)? I would like to run Firefox through our...
In https://github.com/sagudev/mozjs/commit/fac8536d44538c2cf2ded3d4eedfd6e0314a20b6 I add to class `__attribute__ ((__packed__))` and the problem was solved.
`retry-unexpected` is from debugging section so I suspect we want something like `--verify-repeat-loop 1 --verify-output-results`
`--verify*` stuff does not work.
So here is my plan: - use `--retry-unexpected=1` - mark flakes as part of https://github.com/servo/servo/blob/23acb623c887a095e8c6b1e2db10ca1398614945/python/wpt/grouping_formatter.py#L111 - make sure unexpected results are properly reported Then to support subsuites: - handler must...
Each run is marked as own suite, so we will need some basic suite handling for 1.
Subsuite is still run as part of same suite, it just has subsuite prop set (this might be the reason for bug in metadata update). Multiruns do create new suites...
IIUC this is only safe when done on `RootedGuard` (or similar, something that ensures that heap is rooted), so we could just do ```rust impl RootedGuard { pub fn handle(&self)...
> Error validating tests/out/wgsl/functions.wgsl: Could not parse WGSL: error: Not implemented as constant expression: Dot built-in function ┌─ tests/out/wgsl/functions.wgsl:11:18 │ 11 │ const c_2_ = dot(a_2_, b_2_); │ ^^^ see...