Skip to content
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

[wasm-mt] WasmTestOnBrowser-System.Net.WebSockets.Client.Tests fails #74413

Closed
simonrozsival opened this issue Aug 23, 2022 · 7 comments
Closed
Labels
arch-wasm WebAssembly architecture area-System.Net disabled-test The test is disabled in source code against the issue
Milestone

Comments

@simonrozsival
Copy link
Member

There are 123 failing tests in WasmTestOnBrowser-System.Net.WebSockets.Client.Tests when multi-threading is enabled.

  • 42 tests fail with the following exception stack trace:
    System.Net.WebSockets.WebSocketException : An internal WebSocket error occurred. Please see the innerException, if present, for more details. 
    ---- System.Runtime.InteropServices.JavaScript.JSException : TypeError: Failed to execute 'decode' on 'TextDecoder': The provided ArrayBufferView value must not be shared.
    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
    at System.Net.WebSockets.Client.Tests.CloseTest.CloseOutputAsync_ClientInitiated_CanReceive_CanClose(Uri server)
    --- End of stack trace from previous location ---
    ----- Inner Stack Trace -----
    at System.Net.WebSockets.BrowserInterop.WebSocketSend(JSObject webSocket, IntPtr bufferPtr, Int32 bufferLength, Int32 messageType, Boolean endOfMessage)
    at System.Net.WebSockets.BrowserInterop.UnsafeSendSync(JSObject jsWs, ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage)
    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
        at jc (http://127.0.0.1:42359/dotnet.js:5:96779)
        at Object.Oc [as ws_wasm_send] (http://127.0.0.1:42359/dotnet.js:5:93626)
        at _bound_js_INTERNAL_ws_wasm_send (https://dotnet.generated.invalid/_bound_js_INTERNAL_ws_wasm_send:11:21)
        at Object.li (http://127.0.0.1:42359/dotnet.js:5:58079)
        at _mono_wasm_invoke_bound_function (http://127.0.0.1:42359/dotnet.js:14:121580)
        at do_icall (http://127.0.0.1:42359/dotnet.wasm:wasm-function[374]:0x27df1)
        at do_icall_wrapper (http://127.0.0.1:42359/dotnet.wasm:wasm-function[342]:0x2728f)
        at interp_exec_method (http://127.0.0.1:42359/dotnet.wasm:wasm-function[282]:0x1893e)
        at interp_entry (http://127.0.0.1:42359/dotnet.wasm:wasm-function[328]:0x26c8b)
        at interp_entry_static_0 (http://127.0.0.1:42359/dotnet.wasm:wasm-function[401]:0x2895e)
    
  • 39 tests fail with the following exception stack trace:
    System.Net.WebSockets.WebSocketException : An internal WebSocket error occurred. Please see the innerException, if present, for more details. 
    ---- System.Runtime.InteropServices.JavaScript.JSException : TypeError: Failed to execute 'send' on 'WebSocket': The provided ArrayBufferView value must not be shared.
    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
    at System.Net.WebSockets.Client.Tests.SendReceiveTest.SendReceive_VaryingLengthBuffers_Success(Uri server)
    --- End of stack trace from previous location ---
    ----- Inner Stack Trace -----
    at System.Net.WebSockets.BrowserInterop.WebSocketSend(JSObject webSocket, IntPtr bufferPtr, Int32 bufferLength, Int32 messageType, Boolean endOfMessage)
    at System.Net.WebSockets.BrowserInterop.UnsafeSendSync(JSObject jsWs, ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage)
    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
        at Tc (http://127.0.0.1:42359/dotnet.js:5:95034)
        at Object.Oc [as ws_wasm_send] (http://127.0.0.1:42359/dotnet.js:5:93684)
        at _bound_js_INTERNAL_ws_wasm_send (https://dotnet.generated.invalid/_bound_js_INTERNAL_ws_wasm_send:11:21)
        at Object.li (http://127.0.0.1:42359/dotnet.js:5:58079)
        at _mono_wasm_invoke_bound_function (http://127.0.0.1:42359/dotnet.js:14:121580)
        at do_icall (http://127.0.0.1:42359/dotnet.wasm:wasm-function[374]:0x27df1)
        at do_icall_wrapper (http://127.0.0.1:42359/dotnet.wasm:wasm-function[342]:0x2728f)
        at interp_exec_method (http://127.0.0.1:42359/dotnet.wasm:wasm-function[282]:0x1893e)
        at interp_entry (http://127.0.0.1:42359/dotnet.wasm:wasm-function[328]:0x26c8b)
        at interp_entry_static_0 (http://127.0.0.1:42359/dotnet.wasm:wasm-function[401]:0x2895e)
    
  • 42 tests fail with:
    Actual WebSocketErrorCode NativeError when System.Net.WebSockets.WebSocketException (0x80004005): An internal WebSocket error occurred. Please see the innerException, if present, for more details. 
    ---> TypeError: Failed to execute 'decode' on 'TextDecoder': The provided ArrayBufferView value must not be shared.
    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
    at System.Net.WebSockets.Client.Tests.CancelTest.<>c.<<CloseOutputAsync_Cancel_Success>b__5_0>d.MoveNext()
    --- End of stack trace from previous location ---
    at System.Net.WebSockets.Client.Tests.ClientWebSocketTestBase.TestCancellation(Func`2 action, Uri server)
    Expected: True
    Actual:   False
    at System.Net.WebSockets.Client.Tests.ClientWebSocketTestBase.TestCancellation(Func`2 action, Uri server)
    at System.Net.WebSockets.Client.Tests.CancelTest.CloseOutputAsync_Cancel_Success(Uri server)
    --- End of stack trace from previous location ---
    

Full console log: https://helixre107v0xdeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-74342-merge-b05c5a1bd5ab47119e/WasmTestOnBrowser-System.Net.WebSockets.Client.Tests/1/console.c02a8019.log?helixlogtype=result

@ghost ghost added the untriaged New issue has not been triaged by the area owner label Aug 23, 2022
@simonrozsival simonrozsival added arch-wasm WebAssembly architecture and removed area-System.Net untriaged New issue has not been triaged by the area owner labels Aug 23, 2022
@ghost
Copy link

ghost commented Aug 23, 2022

Tagging subscribers to this area: @dotnet/ncl
See info in area-owners.md if you want to be subscribed.

Issue Details

There are 123 failing tests in WasmTestOnBrowser-System.Net.WebSockets.Client.Tests when multi-threading is enabled.

  • 42 tests fail with the following exception stack trace:
    System.Net.WebSockets.WebSocketException : An internal WebSocket error occurred. Please see the innerException, if present, for more details. 
    ---- System.Runtime.InteropServices.JavaScript.JSException : TypeError: Failed to execute 'decode' on 'TextDecoder': The provided ArrayBufferView value must not be shared.
    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
    at System.Net.WebSockets.Client.Tests.CloseTest.CloseOutputAsync_ClientInitiated_CanReceive_CanClose(Uri server)
    --- End of stack trace from previous location ---
    ----- Inner Stack Trace -----
    at System.Net.WebSockets.BrowserInterop.WebSocketSend(JSObject webSocket, IntPtr bufferPtr, Int32 bufferLength, Int32 messageType, Boolean endOfMessage)
    at System.Net.WebSockets.BrowserInterop.UnsafeSendSync(JSObject jsWs, ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage)
    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
        at jc (http://127.0.0.1:42359/dotnet.js:5:96779)
        at Object.Oc [as ws_wasm_send] (http://127.0.0.1:42359/dotnet.js:5:93626)
        at _bound_js_INTERNAL_ws_wasm_send (https://dotnet.generated.invalid/_bound_js_INTERNAL_ws_wasm_send:11:21)
        at Object.li (http://127.0.0.1:42359/dotnet.js:5:58079)
        at _mono_wasm_invoke_bound_function (http://127.0.0.1:42359/dotnet.js:14:121580)
        at do_icall (http://127.0.0.1:42359/dotnet.wasm:wasm-function[374]:0x27df1)
        at do_icall_wrapper (http://127.0.0.1:42359/dotnet.wasm:wasm-function[342]:0x2728f)
        at interp_exec_method (http://127.0.0.1:42359/dotnet.wasm:wasm-function[282]:0x1893e)
        at interp_entry (http://127.0.0.1:42359/dotnet.wasm:wasm-function[328]:0x26c8b)
        at interp_entry_static_0 (http://127.0.0.1:42359/dotnet.wasm:wasm-function[401]:0x2895e)
    
  • 39 tests fail with the following exception stack trace:
    System.Net.WebSockets.WebSocketException : An internal WebSocket error occurred. Please see the innerException, if present, for more details. 
    ---- System.Runtime.InteropServices.JavaScript.JSException : TypeError: Failed to execute 'send' on 'WebSocket': The provided ArrayBufferView value must not be shared.
    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
    at System.Net.WebSockets.Client.Tests.SendReceiveTest.SendReceive_VaryingLengthBuffers_Success(Uri server)
    --- End of stack trace from previous location ---
    ----- Inner Stack Trace -----
    at System.Net.WebSockets.BrowserInterop.WebSocketSend(JSObject webSocket, IntPtr bufferPtr, Int32 bufferLength, Int32 messageType, Boolean endOfMessage)
    at System.Net.WebSockets.BrowserInterop.UnsafeSendSync(JSObject jsWs, ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage)
    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
        at Tc (http://127.0.0.1:42359/dotnet.js:5:95034)
        at Object.Oc [as ws_wasm_send] (http://127.0.0.1:42359/dotnet.js:5:93684)
        at _bound_js_INTERNAL_ws_wasm_send (https://dotnet.generated.invalid/_bound_js_INTERNAL_ws_wasm_send:11:21)
        at Object.li (http://127.0.0.1:42359/dotnet.js:5:58079)
        at _mono_wasm_invoke_bound_function (http://127.0.0.1:42359/dotnet.js:14:121580)
        at do_icall (http://127.0.0.1:42359/dotnet.wasm:wasm-function[374]:0x27df1)
        at do_icall_wrapper (http://127.0.0.1:42359/dotnet.wasm:wasm-function[342]:0x2728f)
        at interp_exec_method (http://127.0.0.1:42359/dotnet.wasm:wasm-function[282]:0x1893e)
        at interp_entry (http://127.0.0.1:42359/dotnet.wasm:wasm-function[328]:0x26c8b)
        at interp_entry_static_0 (http://127.0.0.1:42359/dotnet.wasm:wasm-function[401]:0x2895e)
    
  • 42 tests fail with:
    Actual WebSocketErrorCode NativeError when System.Net.WebSockets.WebSocketException (0x80004005): An internal WebSocket error occurred. Please see the innerException, if present, for more details. 
    ---> TypeError: Failed to execute 'decode' on 'TextDecoder': The provided ArrayBufferView value must not be shared.
    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
    at System.Net.WebSockets.Client.Tests.CancelTest.<>c.<<CloseOutputAsync_Cancel_Success>b__5_0>d.MoveNext()
    --- End of stack trace from previous location ---
    at System.Net.WebSockets.Client.Tests.ClientWebSocketTestBase.TestCancellation(Func`2 action, Uri server)
    Expected: True
    Actual:   False
    at System.Net.WebSockets.Client.Tests.ClientWebSocketTestBase.TestCancellation(Func`2 action, Uri server)
    at System.Net.WebSockets.Client.Tests.CancelTest.CloseOutputAsync_Cancel_Success(Uri server)
    --- End of stack trace from previous location ---
    

Full console log: https://helixre107v0xdeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-74342-merge-b05c5a1bd5ab47119e/WasmTestOnBrowser-System.Net.WebSockets.Client.Tests/1/console.c02a8019.log?helixlogtype=result

Author: simonrozsival
Assignees: -
Labels:

area-System.Net

Milestone: -

@simonrozsival simonrozsival added this to the 8.0.0 milestone Aug 23, 2022
@ghost
Copy link

ghost commented Aug 23, 2022

Tagging subscribers to this area: @dotnet/ncl
See info in area-owners.md if you want to be subscribed.

Issue Details

There are 123 failing tests in WasmTestOnBrowser-System.Net.WebSockets.Client.Tests when multi-threading is enabled.

  • 42 tests fail with the following exception stack trace:
    System.Net.WebSockets.WebSocketException : An internal WebSocket error occurred. Please see the innerException, if present, for more details. 
    ---- System.Runtime.InteropServices.JavaScript.JSException : TypeError: Failed to execute 'decode' on 'TextDecoder': The provided ArrayBufferView value must not be shared.
    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
    at System.Net.WebSockets.Client.Tests.CloseTest.CloseOutputAsync_ClientInitiated_CanReceive_CanClose(Uri server)
    --- End of stack trace from previous location ---
    ----- Inner Stack Trace -----
    at System.Net.WebSockets.BrowserInterop.WebSocketSend(JSObject webSocket, IntPtr bufferPtr, Int32 bufferLength, Int32 messageType, Boolean endOfMessage)
    at System.Net.WebSockets.BrowserInterop.UnsafeSendSync(JSObject jsWs, ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage)
    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
        at jc (http://127.0.0.1:42359/dotnet.js:5:96779)
        at Object.Oc [as ws_wasm_send] (http://127.0.0.1:42359/dotnet.js:5:93626)
        at _bound_js_INTERNAL_ws_wasm_send (https://dotnet.generated.invalid/_bound_js_INTERNAL_ws_wasm_send:11:21)
        at Object.li (http://127.0.0.1:42359/dotnet.js:5:58079)
        at _mono_wasm_invoke_bound_function (http://127.0.0.1:42359/dotnet.js:14:121580)
        at do_icall (http://127.0.0.1:42359/dotnet.wasm:wasm-function[374]:0x27df1)
        at do_icall_wrapper (http://127.0.0.1:42359/dotnet.wasm:wasm-function[342]:0x2728f)
        at interp_exec_method (http://127.0.0.1:42359/dotnet.wasm:wasm-function[282]:0x1893e)
        at interp_entry (http://127.0.0.1:42359/dotnet.wasm:wasm-function[328]:0x26c8b)
        at interp_entry_static_0 (http://127.0.0.1:42359/dotnet.wasm:wasm-function[401]:0x2895e)
    
  • 39 tests fail with the following exception stack trace:
    System.Net.WebSockets.WebSocketException : An internal WebSocket error occurred. Please see the innerException, if present, for more details. 
    ---- System.Runtime.InteropServices.JavaScript.JSException : TypeError: Failed to execute 'send' on 'WebSocket': The provided ArrayBufferView value must not be shared.
    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
    at System.Net.WebSockets.Client.Tests.SendReceiveTest.SendReceive_VaryingLengthBuffers_Success(Uri server)
    --- End of stack trace from previous location ---
    ----- Inner Stack Trace -----
    at System.Net.WebSockets.BrowserInterop.WebSocketSend(JSObject webSocket, IntPtr bufferPtr, Int32 bufferLength, Int32 messageType, Boolean endOfMessage)
    at System.Net.WebSockets.BrowserInterop.UnsafeSendSync(JSObject jsWs, ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage)
    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
        at Tc (http://127.0.0.1:42359/dotnet.js:5:95034)
        at Object.Oc [as ws_wasm_send] (http://127.0.0.1:42359/dotnet.js:5:93684)
        at _bound_js_INTERNAL_ws_wasm_send (https://dotnet.generated.invalid/_bound_js_INTERNAL_ws_wasm_send:11:21)
        at Object.li (http://127.0.0.1:42359/dotnet.js:5:58079)
        at _mono_wasm_invoke_bound_function (http://127.0.0.1:42359/dotnet.js:14:121580)
        at do_icall (http://127.0.0.1:42359/dotnet.wasm:wasm-function[374]:0x27df1)
        at do_icall_wrapper (http://127.0.0.1:42359/dotnet.wasm:wasm-function[342]:0x2728f)
        at interp_exec_method (http://127.0.0.1:42359/dotnet.wasm:wasm-function[282]:0x1893e)
        at interp_entry (http://127.0.0.1:42359/dotnet.wasm:wasm-function[328]:0x26c8b)
        at interp_entry_static_0 (http://127.0.0.1:42359/dotnet.wasm:wasm-function[401]:0x2895e)
    
  • 42 tests fail with:
    Actual WebSocketErrorCode NativeError when System.Net.WebSockets.WebSocketException (0x80004005): An internal WebSocket error occurred. Please see the innerException, if present, for more details. 
    ---> TypeError: Failed to execute 'decode' on 'TextDecoder': The provided ArrayBufferView value must not be shared.
    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
    at System.Net.WebSockets.Client.Tests.CancelTest.<>c.<<CloseOutputAsync_Cancel_Success>b__5_0>d.MoveNext()
    --- End of stack trace from previous location ---
    at System.Net.WebSockets.Client.Tests.ClientWebSocketTestBase.TestCancellation(Func`2 action, Uri server)
    Expected: True
    Actual:   False
    at System.Net.WebSockets.Client.Tests.ClientWebSocketTestBase.TestCancellation(Func`2 action, Uri server)
    at System.Net.WebSockets.Client.Tests.CancelTest.CloseOutputAsync_Cancel_Success(Uri server)
    --- End of stack trace from previous location ---
    

Full console log: https://helixre107v0xdeko0k025g8.blob.core.windows.net/dotnet-runtime-refs-pull-74342-merge-b05c5a1bd5ab47119e/WasmTestOnBrowser-System.Net.WebSockets.Client.Tests/1/console.c02a8019.log?helixlogtype=result

Author: simonrozsival
Assignees: -
Labels:

arch-wasm, area-System.Net

Milestone: 8.0.0

@lambdageek
Copy link
Member

We had a similar Failed to execute 'decode' on 'TextDecoder': The provided ArrayBufferView value must not be shared. with some crypto APIs. you end up having to make a JS wrapper that duplicates the data into a private buffer.

@carlossanlop
Copy link
Member

carlossanlop commented Oct 5, 2022

I am seeing a very similar error message:

Failed to execute 'send' on 'WebSocket': The provided ArrayBufferView value must not be shared.

Example callstack:

[21:32:50] fail: [FAIL] System.Net.WebSockets.Client.Tests.InvokerConnectTest.EchoTextMessage_Success(server: ws://127.0.0.1:33775/WebSocket/EchoWebSocket.ashx)
[21:32:50] info: System.Net.WebSockets.WebSocketException : An internal WebSocket error occurred. Please see the innerException, if present, for more details. 
[21:32:50] info: ---- System.Runtime.InteropServices.JavaScript.JSException : TypeError: Failed to execute 'decode' on 'TextDecoder': The provided ArrayBufferView value must not be shared.
[21:32:50] info:    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
[21:32:50] info:    at System.Net.WebSockets.Client.Tests.WebSocketHelper.TestEcho(Uri server, WebSocketMessageType type, Int32 timeOutMilliseconds, ITestOutputHelper output, HttpMessageInvoker invoker)
[21:32:50] info:    at System.Net.WebSockets.Client.Tests.ConnectTest.EchoTextMessage_Success(Uri server)
[21:32:50] info: --- End of stack trace from previous location ---
[21:32:50] info: ----- Inner Stack Trace -----
[21:32:50] info:    at System.Net.WebSockets.BrowserInterop.WebSocketSend(JSObject webSocket, IntPtr bufferPtr, Int32 bufferLength, Int32 messageType, Boolean endOfMessage)
[21:32:50] info:    at System.Net.WebSockets.BrowserInterop.UnsafeSendSync(JSObject jsWs, ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage)
[21:32:50] info:    at System.Net.WebSockets.BrowserWebSocket.SendAsyncCore(ArraySegment`1 buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken)
[21:32:50] info:     at $c (http://127.0.0.1:33775/dotnet.js:5:97364)
[21:32:50] info:     at Object.Oc [as ws_wasm_send] (http://127.0.0.1:33775/dotnet.js:5:94211)
[21:32:50] info:     at _bound_js_INTERNAL_ws_wasm_send (https://dotnet.generated.invalid/_bound_js_INTERNAL_ws_wasm_send:11:21)
[21:32:50] info:     at Object.li (http://127.0.0.1:33775/dotnet.js:5:58352)
[21:32:50] info:     at _mono_wasm_invoke_bound_function (http://127.0.0.1:33775/dotnet.js:14:121580)
[21:32:50] info:     at do_icall (http://127.0.0.1:33775/dotnet.wasm:wasm-function[339]:0x226a1)
[21:32:50] info:     at do_icall_wrapper (http://127.0.0.1:33775/dotnet.wasm:wasm-function[307]:0x21b3f)
[21:32:50] info:     at interp_exec_method (http://127.0.0.1:33775/dotnet.wasm:wasm-function[243]:0x131c2)
[21:32:50] info:     at interp_entry (http://127.0.0.1:33775/dotnet.wasm:wasm-function[291]:0x2151f)
[21:32:50] info:     at interp_entry_static_0 (http://127.0.0.1:33775/dotnet.wasm:wasm-function[366]:0x2320e)

@lambdageek
Copy link
Member

I am seeing a very similar error message:

That's kind of unexpected, we shouldn't be using a shared array buffer on single-threaded wasm.

@lewing I think we may need a separate issue

@pavelsavara
Copy link
Member

I am seeing a very similar error message:

That's kind of unexpected, we shouldn't be using a shared array buffer on single-threaded wasm.

This log is MT build.

@pavelsavara
Copy link
Member

This is now fixed.

image

@ghost ghost locked as resolved and limited conversation to collaborators Aug 14, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
arch-wasm WebAssembly architecture area-System.Net disabled-test The test is disabled in source code against the issue
Projects
None yet
Development

No branches or pull requests

4 participants