-
Notifications
You must be signed in to change notification settings - Fork 725
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update testsuite #1738
Update testsuite #1738
Conversation
2755cfa
to
3623aa3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a way to mark a test as FAILING rather than deleting it? Seems like we might accidentally forget to add those tests back in.
@@ -1100,6 +1100,9 @@ void CWriter::WriteElemInitializers() { | |||
} | |||
Index elem_segment_index = 0; | |||
for (const ElemSegment* elem_segment : module_->elem_segments) { | |||
if (elem_segment->kind == SegmentKind::Passive) { | |||
continue; | |||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like it might conflict with #1721 (same file altered, diff is extremely close and might overlap) so we should coordinate with @shravanrn
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is very minor. It should be pretty trivial to replicate (or deal with any merge conflicts).
Not that I know of no. |
Thats why I open a bug and listed all the tests I was forced to delete. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM since we have that bug, and also the conflict is minor. (btw any plans to keep up to date with multi table and ref types?)
Dk if this feature will be useful, but yea that tracking bug works, thanks! |
Actually I forgot to run Also |
bulk-memory-operations and reference-types were completely removed from the upstream testsuite becuase there were merged into the upstream spec: WebAssembly/testsuite#44 In order to land this I had to disable several spec tests under wasm2c because it lacks support for mutli-table and reference types. I files #1737 to track this.
3623aa3
to
c306630
Compare
bulk-memory-operations and reference-types were completely
removed from the upstream testsuite becuase there were
merged into the upstream spec:
WebAssembly/testsuite#44
In order to land this I had to disable several spec tests
under wasm2c because it lacks support for mutli-table and
reference types. I filed #1737 to track this.