active issue https://github.com/dotnet/runtime/issues/88084 and https://github.com...
authorPavel Savara <pavel.savara@gmail.com>
Tue, 27 Jun 2023 19:26:54 +0000 (21:26 +0200)
committerGitHub <noreply@github.com>
Tue, 27 Jun 2023 19:26:54 +0000 (21:26 +0200)
src/libraries/tests.proj
src/mono/sample/wasm/browser-threads-minimal/main.js

index 62c9d53..ec35461 100644 (file)
     <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>
index 7462f11..59a0f4b 100644 (file)
@@ -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");
@@ -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();