-
Notifications
You must be signed in to change notification settings - Fork 628
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
CI: test-wamr-ide is not stable #3904
Comments
in test-tools/wamr-ide/VSCode-Extension/src/test/suite/extension.test.ts test('Rust formatters', async function () {
// ...
try {
await vscode.debug.startDebugging(undefined, config);
} catch (e) {
assert.fail('Could not connect to debug adapter');
}
// ...
} |
this error is due to the recent version of the rust toolchain, which will emit ref types opcodes in wasm file, need to enable this feature in the iwasm build. I also find that the vector format checks fails recently:
And previously deque failed the assertion too:
I disable those two checks for now. However, I think the ideal fix is to modify the |
I also take a look at what it's like in lldb(without import the rust.py formatted):
When I try to dereference it, it's all 0 instead of 1, 2, 3, 4, 5:
|
Last pass https://github.com/bytecodealliance/wasm-micro-runtime/actions/runs/11694609446/job/32568704604
First failure https://github.com/bytecodealliance/wasm-micro-runtime/actions/runs/11717281799/job/32636759641
Most like:
The text was updated successfully, but these errors were encountered: