Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Should fix the test issues
  • Loading branch information
davidwrighton committed Aug 19, 2022
commit 1170afe4a396cfe72cc91850715ab652861e2d31
2 changes: 1 addition & 1 deletion src/tests/JIT/Stress/ABI/Gen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ internal static object GenConstant(Type type, FieldInfo[] fields, Random rand)
return (double)rand.Next();

if (type == typeof(Int128))
return new Int128((ulong)GenConstant(typeof(ulong), null, rand), (ulong)GenConstant(typeof(ulong), null, rand));
return new Int128((ulong)(long)GenConstant(typeof(long), null, rand), (ulong)(long)GenConstant(typeof(long), null, rand));

if (type == typeof(Vector<int>))
return GenConstantVector<Vector<int>, int>(rand);
Expand Down
6 changes: 3 additions & 3 deletions src/tests/issues.targets
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@

<!-- All OS/Arch CoreCLR excludes -->
<ItemGroup Condition="'$(XunitTestBinBase)' != '' and '$(RuntimeFlavor)' == 'coreclr' ">
<ExcludeList Include="$(XunitTestBinBase)/baseservices/exceptions/StackTracePreserve/StackTracePreserveTests/*">
<Issue>https://github.com/dotnet/runtime/issues/11213</Issue>
</ExcludeList>
<ExcludeList Include="$(XunitTestBinBase)/baseservices/exceptions/StackTracePreserve/StackTracePreserveTests/*">
<Issue>https://github.com/dotnet/runtime/issues/11213</Issue>
</ExcludeList>
Expand Down Expand Up @@ -1424,6 +1421,9 @@

<!-- Known failures for mono runtime on *all* architectures/operating systems in *all* runtime modes -->
<ItemGroup Condition="'$(RuntimeFlavor)' == 'mono'" >
<ExcludeList Include="$(XunitTestBinBase)/Interop/PInvoke/Int128/Int128TestFieldLayout/*">
<Issue>https://github.com/dotnet/runtime/issues/74223</Issue>
</ExcludeList>
<ExcludeList Include = "$(XUnitTestBinBase)/JIT/Directed/Arrays/nintindexoutofrange/**">
<Issue>https://github.com/dotnet/runtime/issues/71656</Issue>
</ExcludeList>
Expand Down