Skip to content

Commit

Permalink
Fix Runtime_105821 platform check (#105889)
Browse files Browse the repository at this point in the history
  • Loading branch information
amanasifkhalid authored Aug 2, 2024
1 parent 014632b commit f120fff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class Runtime_105821
[Fact]
public static void TestEntryPoint()
{
if (Sse42.IsSupported)
if (Sse42.IsSupported && Bmi2.IsSupported)
{
Assert.Throws<DivideByZeroException>(() => M1(0));
}
Expand Down

0 comments on commit f120fff

Please sign in to comment.