Skip to content
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
4 changes: 2 additions & 2 deletions src/tests/GC/API/GC/GetTotalAllocatedBytesServerGC.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<ServerGarbageCollection>true</ServerGarbageCollection>
<!-- DATAS heap-count adaptation is a CoreCLR Server GC behavior -->
<CLRTestTargetUnsupported Condition="'$(RuntimeFlavor)' != 'coreclr'">true</CLRTestTargetUnsupported>
<!-- TODO: Re-enable when CoreCLR WebAssembly supports server GC.
Tracked by https://github.com/dotnet/runtime/issues/131321. -->
<!-- Server GC is disabled on CoreCLR browser by design; see the suppression
inventory in https://github.com/dotnet/runtime/issues/131321. -->
<CLRTestTargetUnsupported Condition="'$(RuntimeFlavor)' == 'coreclr' and '$(TargetOS)' == 'browser'">true</CLRTestTargetUnsupported>
</PropertyGroup>
<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public class Program : IProgram

[ActiveIssue("https://github.com/dotnet/runtimelab/issues/165", typeof(Utilities), nameof(Utilities.IsNativeAot))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/34072", TestRuntimes.Mono)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/131925", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsCoreCLR))]
[Fact]
public static void TestEntryPoint()
{
Expand Down Expand Up @@ -785,4 +786,3 @@ public void TestDynamicAssembly(bool collectibleContext)
}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
<PropertyGroup>
<!-- Needed for UnloadabilityIncompatible -->
<RequiresProcessIsolation>true</RequiresProcessIsolation>
<!-- Browser does not support Process.GetCurrentProcess or the Process/PID-based managed
self-process DiagnosticsClient used by this test; browser diagnostics use JS/WebSocket
clients instead. See https://github.com/dotnet/runtime/issues/131898 and
https://github.com/dotnet/runtime/issues/131321. -->
<CLRTestTargetUnsupported Condition="'$(RuntimeFlavor)' == 'coreclr' and '$(TargetOS)' == 'browser'">true</CLRTestTargetUnsupported>
<TargetFrameworkIdentifier>.NETCoreApp</TargetFrameworkIdentifier>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<CLRTestPriority>1</CLRTestPriority>
Expand Down
5 changes: 5 additions & 0 deletions src/tests/tracing/eventpipe/eventsvalidation/GCEvents.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
<PropertyGroup>
<!-- Needed for UnloadabilityIncompatible -->
<RequiresProcessIsolation>true</RequiresProcessIsolation>
<!-- Browser does not support Process.GetCurrentProcess or the Process/PID-based managed
self-process DiagnosticsClient used by this test; browser diagnostics use JS/WebSocket
clients instead. See https://github.com/dotnet/runtime/issues/131898 and
https://github.com/dotnet/runtime/issues/131321. -->
<CLRTestTargetUnsupported Condition="'$(RuntimeFlavor)' == 'coreclr' and '$(TargetOS)' == 'browser'">true</CLRTestTargetUnsupported>
<TargetFrameworkIdentifier>.NETCoreApp</TargetFrameworkIdentifier>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<CLRTestPriority>1</CLRTestPriority>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
<PropertyGroup>
<!-- Needed for UnloadabilityIncompatible, GC.WaitForPendingFinalizers -->
<RequiresProcessIsolation>true</RequiresProcessIsolation>
<!-- Browser does not support Process.GetCurrentProcess or the Process/PID-based managed
self-process DiagnosticsClient used by this test; browser diagnostics use JS/WebSocket
clients instead. See https://github.com/dotnet/runtime/issues/131898 and
https://github.com/dotnet/runtime/issues/131321. -->
<CLRTestTargetUnsupported Condition="'$(RuntimeFlavor)' == 'coreclr' and '$(TargetOS)' == 'browser'">true</CLRTestTargetUnsupported>
<TargetFrameworkIdentifier>.NETCoreApp</TargetFrameworkIdentifier>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<CLRTestPriority>1</CLRTestPriority>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
<PropertyGroup>
<!-- Needed for UnloadabilityIncompatible -->
<RequiresProcessIsolation>true</RequiresProcessIsolation>
<!-- Browser does not support Process.GetCurrentProcess or the Process/PID-based managed
self-process DiagnosticsClient used by this test; browser diagnostics use JS/WebSocket
clients instead. See https://github.com/dotnet/runtime/issues/131898 and
https://github.com/dotnet/runtime/issues/131321. -->
<CLRTestTargetUnsupported Condition="'$(RuntimeFlavor)' == 'coreclr' and '$(TargetOS)' == 'browser'">true</CLRTestTargetUnsupported>
<TargetFrameworkIdentifier>.NETCoreApp</TargetFrameworkIdentifier>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<CLRTestPriority>1</CLRTestPriority>
Expand Down
Loading