We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a498433 + 72de0f6 commit f1c461eCopy full SHA for f1c461e
source/Sylvan.Data.Csv.Tests/SimdExperiment.cs
@@ -9,7 +9,18 @@ namespace Sylvan.Data.Csv;
9
10
public unsafe class SimdExperiment
11
{
12
- [Fact]
+ private sealed class SkipIfSse2UnsupportedFactAttribute : FactAttribute
13
+ {
14
+ public SkipIfSse2UnsupportedFactAttribute()
15
16
+ if (!Sse2.IsSupported)
17
18
+ Skip = "SSE2 is not supported";
19
+ }
20
21
22
+
23
+ [SkipIfSse2UnsupportedFact]
24
public void Test1()
25
26
var mask = VectorForChar('\n');
0 commit comments