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

[browser][mt] active issues in smoke test #88100

Merged
merged 1 commit into from
Jun 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/libraries/tests.proj
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,9 @@
<SmokeTestProject Remove="@(SmokeTestProject)" />
<SmokeTestProject Include="$(MonoProjectRoot)sample\wasm\browser-threads-minimal\Wasm.Browser.Threads.Minimal.Sample.csproj" />
<SmokeTestProject Include="$(MSBuildThisFileDirectory)System.Net.WebSockets.Client\tests\System.Net.WebSockets.Client.Tests.csproj" />
<!-- ActiveIssue https://github.com/dotnet/runtime/issues/88084
<SmokeTestProject Include="$(MSBuildThisFileDirectory)System.Net.Http\tests\FunctionalTests\System.Net.Http.Functional.Tests.csproj" />
-->
</ItemGroup>

<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion src/mono/sample/wasm/browser-threads-minimal/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ try {
let w0 = await exports.Sample.Test.WsClientMain("wss://socketsbay.com/wss/v2/1/demo/");
console.log("smoke: WsClientMain done " + w0);

/* ActiveIssue https://github.com/dotnet/runtime/issues/88057
console.log("smoke: running FetchBackground(blurst.txt)");
let s = await exports.Sample.Test.FetchBackground("./blurst.txt");
console.log("smoke: FetchBackground(blurst.txt) done");
Expand All @@ -93,7 +94,7 @@ try {
const msg = `Unexpected FetchBackground(missing) result ${s}`;
document.getElementById("out").innerHTML = msg;
throw new Error(msg);
}
}*/

console.log("smoke: running TaskRunCompute");
const r1 = await exports.Sample.Test.RunBackgroundTaskRunCompute();
Expand Down