Skip to content

Commit

Permalink
Update test to run with intrinsics disabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyMakkison authored and phatboyg committed Jan 2, 2023
1 parent 69f2a6d commit 0cc6451
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,12 @@ Task("Test")

if(data.IsRunningOnAppVeyor) settings.ArgumentCustomization = args => args.Append($"--test-adapter-path:.").Append("--logger:Appveyor");

Information($"Running {project.GetFilename()} test with SSE3 enabled");
DotNetCoreTest(data.Paths.Directories.Solution.FullPath, settings);

settings.EnvironmentVariables["COMPlus_EnableSSE3"] = "0";
Information($"Running {project.GetFilename()} test with SSE3 disabled");
DotNetTest(data.Paths.Directories.Solution.FullPath, settings);
});

Task("Pack")
Expand Down

0 comments on commit 0cc6451

Please sign in to comment.