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

Workloads test: Install the current app.ref pack also #93571

Closed
wants to merge 3 commits into from
Closed
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: 3 additions & 1 deletion eng/testing/workloads-testing.targets
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
GetWorkloadInputs;
_InstallWorkloads
</InstallWorkloadUsingArtifactsDependsOn>

<SkipUpdateAppRefPackForTestingWorkloads>false</SkipUpdateAppRefPackForTestingWorkloads>
</PropertyGroup>

<ItemGroup>
Expand Down Expand Up @@ -190,7 +192,7 @@
LocalNuGetsPath="$(LibrariesShippingPackagesDir)"
TemplateNuGetConfigPath="$(RepoRoot)NuGet.config"
SdkWithNoWorkloadInstalledPath="$(_SdkWithNoWorkloadPath)"
SkipUpdateAppRefPack="true"
SkipUpdateAppRefPack="$(SkipUpdateAppRefPackForTestingWorkloads)"
/>

<Touch Files="$(_SdkWithNoWorkloadStampPath)" AlwaysCreate="true" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ public void NonWasmConsoleBuild_WithoutWorkload(string config, string extraBuild
shouldRun: targetFramework == s_latestTargetFramework);

[Theory]
[ActiveIssue("https://github.com/dotnet/runtime/issues/93585")]
[MemberData(nameof(GetTestData))]
public void NonWasmConsoleBuild_WithWorkload(string config, string extraBuildArgs, string targetFramework)
=> NonWasmConsoleBuild(config,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ public SatelliteLoadingTests(ITestOutputHelper output, SharedBuildPerTestClassFi
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/93387")]
public async Task LoadSatelliteAssembly()
{
CopyTestAsset("WasmBasicTestApp", "SatelliteLoadingTests");
Expand Down