File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Interop/DllImportSearchPaths Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,12 @@ public static void AssemblyDirectory_NotFound()
19
19
}
20
20
21
21
public static bool CanLoadAssemblyInSubdirectory =>
22
- ! TestLibrary . Utilities . IsNativeAot && ! TestLibrary . PlatformDetection . IsMonoLLVMFULLAOT ;
22
+ ! TestLibrary . Utilities . IsNativeAot &&
23
+ ! TestLibrary . PlatformDetection . IsMonoLLVMFULLAOT &&
24
+ ! OperatingSystem . IsAndroid ( ) &&
25
+ ! OperatingSystem . IsIOS ( ) &&
26
+ ! OperatingSystem . IsTvOS ( ) &&
27
+ ! OperatingSystem . IsBrowser ( ) ;
23
28
24
29
[ ConditionalFact ( nameof ( CanLoadAssemblyInSubdirectory ) ) ]
25
30
public static void AssemblyDirectory_Found ( )
Original file line number Diff line number Diff line change 3857
3857
<ExcludeList Include = " $(XunitTestBinBase)/Loader/classloader/StaticVirtualMethods/GenericContext/**" >
3858
3858
<Issue >https://github.com/dotnet/runtime/issues/67359</Issue >
3859
3859
</ExcludeList >
3860
+ <ExcludeList Include =" $(XunitTestBinBase)/Interop/DllImportSearchPaths/DllImportSearchPathsTest/**" >
3861
+ <Issue >Loads an assembly from file</Issue >
3862
+ </ExcludeList >
3860
3863
</ItemGroup >
3861
3864
3862
3865
<ItemGroup Condition =" $(TargetOS) == 'Android' And '$(TargetArchitecture)' == 'arm64' " >
You can’t perform that action at this time.
0 commit comments