-
-
Notifications
You must be signed in to change notification settings - Fork 885
Closed
Labels
Description
Prerequisites
- I have written a descriptive issue title
- I have verified that I am running the latest version of ImageSharp
- I have verified if the problem exist in both
DEBUG
andRELEASE
mode - I have searched open and closed issues to ensure it has not already been reported
ImageSharp version
local build with latest main-branch
Other ImageSharp packages and versions
none
Environment (Operating system, version and so on)
win-x64, DOTNET_EnableSSE=0
.NET Framework version
all
Description
While hunting the bug (fixed via #2413) I tried several things, amongst others disabling SSE for unit tests run with Visual Studio by using this
Line 2 in 0a1f05b
<RunSettings> |
<?xml version="1.0" encoding="utf-8" ?>
<RunSettings>
<RunConfiguration>
<!--Used in conjunction with ActiveIssueAttribute to skip tests with known issues-->
<TestCaseFilter>category!=failing</TestCaseFilter>
<EnvironmentVariables>
<DOTNET_EnableSSE>0</DOTNET_EnableSSE>
</EnvironmentVariables>
</RunConfiguration>
</RunSettings>
Tests started to fail -- even when going back in the history of main-branch (so no recent commit caused these failures).
To me it looks like there are latent bugs in the scalar code-pathes. Can anyone confirm?
(description copied and adapted from #2413 (comment))
Steps to Reproduce
To reproduce together with that runsettings one can try this playlist.zip (for filtered tests).
Images
No response