[net9.0] Merge main into net9.0.

This commit is contained in:
Rolf Bjarne Kvinge 2024-09-18 18:19:58 +02:00
Родитель 1dd6b6c4f2 31efecac61
Коммит a5489a9250
624 изменённых файлов: 323 добавлений и 71171 удалений

Просмотреть файл

@ -7,6 +7,12 @@
"commands": [
"t4"
]
},
"dotnet-ilrepack": {
"version": "1.0.0",
"commands": [
"ilrepack"
]
}
}
}

Просмотреть файл

@ -65,7 +65,6 @@ body:
attributes:
label: Build logs
description: Please get an [MSBuild binlogs](https://github.com/xamarin/xamarin-macios/wiki/Diagnosis#build-logs) and attach it here (zipped, since GitHub doesn't allow attachment of .binlog files)
render: shell
- type: markdown
attributes:
value: |

Просмотреть файл

@ -65,7 +65,6 @@ body:
attributes:
label: Relevant logs
description: Please copy and paste any (short!) relevant logs. Longer logs can be attached as .txt or .zip files. This is likely either the Application Output from the IDE, a [crash report](https://github.com/xamarin/xamarin-macios/wiki/Diagnosis#crash-reports) or the [device log](https://support.apple.com/en-in/guide/console/cnsl1012/mac) (or all of these).
render: shell
- type: markdown
attributes:
value: |

1
.github/ISSUE_TEMPLATE/03-api.yml поставляемый
Просмотреть файл

@ -75,7 +75,6 @@ body:
attributes:
label: Relevant log output
description: Please copy and paste any (short!) relevant log output. Longer logs can be attached as .txt or .zip files.
render: shell
- type: markdown
attributes:
value: |

1
.github/ISSUE_TEMPLATE/04-bindings.yml поставляемый
Просмотреть файл

@ -66,7 +66,6 @@ body:
attributes:
label: Build logs
description: Please get an [MSBuild binlogs](https://github.com/xamarin/xamarin-macios/wiki/Diagnosis#build-logs) and attach it here (zipped, since GitHub doesn't allow attachment of .binlog files)
render: shell
- type: markdown
attributes:
value: |

1
.github/ISSUE_TEMPLATE/05-other.yml поставляемый
Просмотреть файл

@ -65,7 +65,6 @@ body:
attributes:
label: Relevant log output
description: Please copy and paste any (short!) relevant log output. Longer logs can be attached as .txt or .zip files. For build logs please provide an [MSBuild binlog](https://github.com/xamarin/xamarin-macios/wiki/Diagnosis#build-logs).
render: shell
- type: markdown
attributes:
value: |

Просмотреть файл

@ -40,12 +40,14 @@ $(TOP)/Make.config.inc: $(TOP)/Make.config $(TOP)/mk/mono.mk
include $(TOP)/Make.versions
APIDIFF_REFERENCES_iOS=https://dl.internalx.com/wrench/xcode14.3/9defd91b37e5b4c3ab1f63e3ca77095d09aa4c93/8579896/package/bundle.zip
APIDIFF_REFERENCES_Mac=https://dl.internalx.com/wrench/xcode14.3/9defd91b37e5b4c3ab1f63e3ca77095d09aa4c93/8579896/package/bundle.zip
APIDIFF_REFERENCES_DOTNET_iOS=https://dl.internalx.com/wrench/8.0.1xx-xcode15.1/a9cf72fde99370245d42859c7eace91fb9563c23/8879876/package/bundle.zip
APIDIFF_REFERENCES_DOTNET_tvOS=https://dl.internalx.com/wrench/8.0.1xx-xcode15.1/a9cf72fde99370245d42859c7eace91fb9563c23/8879876/package/bundle.zip
APIDIFF_REFERENCES_DOTNET_macOS=https://dl.internalx.com/wrench/8.0.1xx-xcode15.1/a9cf72fde99370245d42859c7eace91fb9563c23/8879876/package/bundle.zip
APIDIFF_REFERENCES_DOTNET_MacCatalyst=https://dl.internalx.com/wrench/8.0.1xx-xcode15.1/a9cf72fde99370245d42859c7eace91fb9563c23/8879876/package/bundle.zip
# These versions are used to compute the API diff between the current commit and our current stable release.
# The value is taken from the name + version of the Ref pack.
# Example: given the Ref pack "Microsoft.iOS.Ref.net8.0_17.5" with the version "17.5.8030", the value
# to write here would be the part after "Microsoft.iOS.Ref." + "/" + version: "net8.0_17.5/17.5.8030"
STABLE_NUGET_VERSION_iOS=net8.0_17.5/17.5.8030
STABLE_NUGET_VERSION_tvOS=net8.0_17.5/17.5.8030
STABLE_NUGET_VERSION_MacCatalyst=net8.0_17.5/17.5.8030
STABLE_NUGET_VERSION_macOS=net8.0_14.5/14.5.8030
PACKAGE_HEAD_REV=$(shell git rev-parse HEAD)
@ -324,9 +326,6 @@ INCLUDE_HOTRESTART=1
ENABLE_DOTNET=1
# disable source code install by default (it's enabled for CI builds)
ENABLE_INSTALL_SOURCE=
ifeq ($(shell test $(shell echo $(MIN_IOS_SDK_VERSION) | sed 's/[.].*//') -ge 11; echo $$?),0)
IOS_SUPPORTS_32BIT_ARCHITECTURES=
else

11
configure поставляемый
Просмотреть файл

@ -37,9 +37,6 @@ Usage: configure [options]
--enable-documentation Enable building of API documentation
--disable-documentation Disable building of API documentation.
--enable-install-source Enable building of API documentation
--disable-install-source Disable building of API documentation.
--enable-legacy-xamarin Enable building the legacy version of Xamarin.iOS/Xamarin.Mac.
--disable-legacy-xamarin Disable building the legacy version of Xamarin.iOS/Xamarin.Mac.
@ -185,14 +182,6 @@ while test "x$1" != x; do
echo "$1 is ignored. Use --disable-dotnet instead"
shift
;;
--enable-install-source)
echo "ENABLE_INSTALL_SOURCE=1" >> "$CONFIGURED_FILE"
shift
;;
--disable-install-source)
echo "ENABLE_INSTALL_SOURCE=" >> "$CONFIGURED_FILE"
shift
;;
--enable-legacy-xamarin)
echo "INCLUDE_XAMARIN_LEGACY=1" >> "$CONFIGURED_FILE"
shift

Просмотреть файл

@ -12,7 +12,7 @@
<MicrosoftNETRuntimeMonoTargetsSdkPackageVersion>9.0.0-alpha.1.23556.4</MicrosoftNETRuntimeMonoTargetsSdkPackageVersion>
<MicrosoftTemplateEngineTasksVersion>7.0.100-alpha.1.21601.1</MicrosoftTemplateEngineTasksVersion>
<MicrosoftDotNetCecilPackageVersion>0.11.5-alpha.24419.1</MicrosoftDotNetCecilPackageVersion>
<MicrosoftDotNetXHarnessiOSSharedPackageVersion>10.0.0-prerelease.24459.1</MicrosoftDotNetXHarnessiOSSharedPackageVersion>
<MicrosoftDotNetXHarnessiOSSharedPackageVersion>10.0.0-prerelease.24466.1</MicrosoftDotNetXHarnessiOSSharedPackageVersion>
<!-- Manually updated versions -->
<Emscriptennet7WorkloadVersion>$(MicrosoftNETWorkloadEmscriptenCurrentManifest80100Version)</Emscriptennet7WorkloadVersion>
<EmscriptenWorkloadVersion>$(MicrosoftNETWorkloadEmscriptenCurrentManifest80100Version)</EmscriptenWorkloadVersion>

Просмотреть файл

@ -18,7 +18,7 @@ endif
# Available versions can be seen here:
# https://dev.azure.com/dnceng/public/_artifacts/feed/dotnet-eng/NuGet/Microsoft.Tools.Mlaunch/versions
MLAUNCH_NUGET_VERSION=1.0.142
MLAUNCH_NUGET_VERSION=1.0.256
define CheckVersionTemplate
check-$(1)::

Просмотреть файл

@ -71,6 +71,7 @@
</ItemGroup>
<ItemGroup>
<ReferenceCopyLocalDirs Include="@(ReferenceCopyLocalPaths -&gt; '%(RootDir)%(Directory)')" />
<ReferenceCopyLocalDirs Include="@(ReferencePathWithRefAssemblies -&gt; '%(RootDir)%(Directory)')" />
<ReferenceCopyLocalPaths Remove="@(MergedAssemblies)" />
<LibDir Include="@(ReferenceCopyLocalDirs -&gt; Distinct())" />
</ItemGroup>
@ -85,9 +86,9 @@
<ILRepackArgs>$(ILRepackArgs) "/lib:$(NetstandardDirectory)"</ILRepackArgs> <!-- This is needed for ilrepack to find netstandard.dll, which is referenced by the System.Text.Json assembly -->
</PropertyGroup>
<PropertyGroup>
<SYSTEM_MONO Condition="'$(SYSTEM_MONO)' == ''">/Library/Frameworks/Mono.framework/Versions/Current/Commands/mono</SYSTEM_MONO>
<LOCAL_DOTNET_PATH Condition="'$(LOCAL_DOTNET_PATH)' == ''">$(MSBuildThisFileDirectory)../builds/downloads/dotnet/dotnet</LOCAL_DOTNET_PATH>
</PropertyGroup>
<Exec Command="$(SYSTEM_MONO) &quot;$(ILRepack)&quot; $(ILRepackArgs)" WorkingDirectory="$(MSBuildProjectDirectory)\$(OutputPath)" StandardErrorImportance="high" StandardOutputImportance="low" ConsoleToMSBuild="true" ContinueOnError="true">
<Exec Command="$(LOCAL_DOTNET_PATH) tool run ilrepack $(ILRepackArgs)" WorkingDirectory="$(MSBuildProjectDirectory)\$(OutputPath)" StandardErrorImportance="high" StandardOutputImportance="low" ConsoleToMSBuild="true" ContinueOnError="true">
<Output TaskParameter="ConsoleOutput" PropertyName="ILRepackOutput" />
<Output TaskParameter="ExitCode" PropertyName="ExitCode" />
</Exec>

Просмотреть файл

@ -1,93 +0,0 @@
{
"images": [
{
"idiom": "iphone",
"size": "20x20",
"scale": "2x",
"filename": "appicon20x20@2x.png"
},
{
"idiom": "ipad",
"size": "20x20",
"scale": "2x",
"filename": "appicon20x20@2x.png"
},
{
"idiom": "iphone",
"size": "20x20",
"scale": "3x",
"filename": "appicon20x20@3x.png"
},
{
"idiom": "iphone",
"size": "29x29",
"scale": "2x",
"filename": "appicon29x29@2x.png"
},
{
"idiom": "ipad",
"size": "29x29",
"scale": "2x",
"filename": "appicon29x29@2x.png"
},
{
"idiom": "iphone",
"size": "29x29",
"scale": "3x",
"filename": "appicon29x29@3x.png"
},
{
"idiom": "iphone",
"size": "40x40",
"scale": "2x",
"filename": "appicon40x40@2x.png"
},
{
"idiom": "ipad",
"size": "40x40",
"scale": "2x",
"filename": "appicon40x40@2x.png"
},
{
"idiom": "iphone",
"size": "40x40",
"scale": "3x",
"filename": "appicon40x40@3x.png"
},
{
"idiom": "iphone",
"size": "60x60",
"scale": "2x",
"filename": "appicon60x60@2x.png"
},
{
"idiom": "iphone",
"size": "60x60",
"scale": "3x",
"filename": "appicon60x60@3x.png"
},
{
"idiom": "ipad",
"size": "76x76",
"scale": "2x",
"filename": "appicon76x76@2x.png"
},
{
"idiom": "ipad",
"size": "83.5x83.5",
"scale": "2x",
"filename": "appicon83.5x83.5@2x.png"
},
{
"idiom": "ios-marketing",
"size": "1024x1024",
"scale": "1x",
"filename": "appiconItunesArtwork.png"
}
],
"properties": {},
"info": {
"version": 1,
"author": "xcode"
}
}

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 12 KiB

Просмотреть файл

@ -26,12 +26,29 @@
<string>com.xamarin.Xamarin-PreBuilt</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UILaunchScreen</key>
<dict>
<key>UIImageName</key>
<string>appiconfg</string>
</dict>
<key>CFBundleName</key>
<string>Xamarin.PreBuilt</string>
<key>XSAppIconAssets</key>
<string>Assets.xcassets/AppIcon.appiconset</string>
<key>CFBundleIcons</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>AppIcon60x60</string>
<string>appicon20x20</string>
<string>appicon29x29</string>
<string>appicon40x40</string>
<string>appicon60x60</string>
<string>appicon76x76</string>
<string>appicon83.5x83.5</string>
</array>
</dict>
</dict>
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleLightContent</string>
<key>UIFileSharingEnabled</key>

Просмотреть файл

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--This file was auto-generated by .NET MAUI.-->
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="17701" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
<device id="retina6_1" orientation="portrait" appearance="light"/>
<dependencies>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="17703"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="EHf-IW-A2E">
<objects>
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="Llm-lL-Icb"/>
<viewControllerLayoutGuide type="bottom" id="xb3-aO-Qok"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
<rect key="frame" x="0.0" y="0.0" width="414" height="896"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="center" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" image="appiconfg.png" translatesAutoresizingMaskIntoConstraints="NO" id="aT4-1l-d9a">
<rect key="frame" x="0.0" y="0.0" width="414" height="896"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
</imageView>
</subviews>
<color key="backgroundColor" red="0.31764707" green="0.16862746" blue="0.83137256" alpha="1" colorSpace="custom" customColorSpace="displayP3"/>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="53" y="375"/>
</scene>
</scenes>
<resources>
<image name="appiconfg.png" />
</resources>
</document>

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 692 B

После

Ширина:  |  Высота:  |  Размер: 692 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 815 B

После

Ширина:  |  Высота:  |  Размер: 815 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 824 B

После

Ширина:  |  Высота:  |  Размер: 824 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.4 KiB

После

Ширина:  |  Высота:  |  Размер: 1.4 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.2 KiB

После

Ширина:  |  Высота:  |  Размер: 1.2 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.5 KiB

После

Ширина:  |  Высота:  |  Размер: 1.5 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.5 KiB

После

Ширина:  |  Высота:  |  Размер: 1.5 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 2.5 KiB

После

Ширина:  |  Высота:  |  Размер: 2.5 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 2.0 KiB

После

Ширина:  |  Высота:  |  Размер: 2.0 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 2.4 KiB

После

Ширина:  |  Высота:  |  Размер: 2.4 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 3.1 KiB

После

Ширина:  |  Высота:  |  Размер: 297 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 7.6 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 14 KiB

Просмотреть файл

@ -26,8 +26,6 @@
</ItemGroup>
<ItemGroup>
<BundleResource Include="Resources\appiconfg.png" />
<BundleResource Include="Resources\appiconfg@2x.png" />
<BundleResource Include="Resources\appiconfg@3x.png" />
</ItemGroup>
<!-- For debug only, copies files from a AdditionalFiles directory into the bundle (i.e. an app to be interpreted) -->

Просмотреть файл

@ -7,6 +7,43 @@ using Foundation;
using ObjCRuntime;
namespace ScriptingBridge {
/// <summary>This class provides API to send Apple events to scriptable applications and get Apple events back.</summary>
/// <remarks>
/// <para>There are multiple steps to use this API successfully.</para>
/// <para>First step is to create a binding project, which will define a protocol for the specific application to interact with, and the corresponding API. The code in the API definition for the binding project should look something like this:</para>
/// <example>
/// <code lang="csharp lang-csharp"><![CDATA[
/// namespace Finder {
/// [Protocol]
/// interface FinderApplication {
/// [Export ("version")]
/// string Version { get; }
/// }
/// }]]></code>
/// </example>
/// <para>The second step is to create an executable project, which references the binding project. Additionally, the executable project defines a class that mirrors the protocol from the binding project:</para>
/// <example>
/// <code lang="csharp lang-csharp"><![CDATA[
/// namespace Finder {
/// [Protocol]
/// class FinderApplication : SBApplication, IFinderApplication {
/// // This constructor so that the runtime can create an instance of this class from the
/// // Objetive-C object handle in the call to SBApplication.GetApplication.
/// protected FinderApplication (NativeHandle handle) { }
/// // Otherwise this class is empty, all the API will be provided through the protocol interface.
/// }
/// }]]></code>
/// </example>
/// <para>Note that the FinderApplication class subclasses this class (<see cref="SBApplication" />), in addition to implementing the FinderApplication protocol (which has been generated as an interface, with an <c>I</c> prefix, in the binding project).</para>
/// <para>The final step is to call GetApplication, and cast the return value to the protocol interface.</para>
/// <example>
/// <code lang="csharp lang-csharp"><![CDATA[
/// public static string GetFinderVersion () {
/// var finder = (IFinderApplication) SBApplication.GetApplication&lt;FinderApplication&gt; ("com.apple.finder");
/// return finder.Version;
/// }]]></code>
/// </example>
/// </remarks>
public partial class SBApplication {
public static SBApplication? GetApplication (string ident) => Runtime.GetNSObject<SBApplication> (_FromBundleIdentifier (ident));
@ -19,25 +56,5 @@ namespace ScriptingBridge {
public static SBApplication? GetApplication (int pid) => Runtime.GetNSObject<SBApplication> (_FromProcessIdentifier (pid));
public static T? GetApplication<T> (int pid) where T : SBApplication => Runtime.GetINativeObject<T> (_FromProcessIdentifier (pid), forced_type: true, owns: false);
#if !NET
[Obsolete ("Use 'GetApplication' instead.")]
public static SBApplication? FromBundleIdentifier (string ident) => Runtime.GetNSObject<SBApplication> (_FromBundleIdentifier (ident));
[Obsolete ("Use 'GetApplication' instead.")]
public static T? FromBundleIdentifier<T> (string ident) where T : SBApplication => Runtime.GetINativeObject<T> (_FromBundleIdentifier (ident), forced_type: true, owns: false);
[Obsolete ("Use 'GetApplication' instead.")]
public static SBApplication? FromURL (NSUrl url) => Runtime.GetNSObject<SBApplication> (_FromURL (url));
[Obsolete ("Use 'GetApplication' instead.")]
public static T? FromURL<T> (NSUrl url) where T : SBApplication => Runtime.GetINativeObject<T> (_FromURL (url), forced_type: true, owns: false);
[Obsolete ("Use 'GetApplication' instead.")]
public static SBApplication? FromProcessIdentifier (int pid) => Runtime.GetNSObject<SBApplication> (_FromProcessIdentifier (pid));
[Obsolete ("Use 'GetApplication' instead.")]
public static T? FromProcessIdentifier<T> (int pid) where T : SBApplication => Runtime.GetINativeObject<T> (_FromProcessIdentifier (pid), forced_type: true, owns: false);
#endif
}
}

1
tests/.gitignore поставляемый
Просмотреть файл

@ -32,5 +32,4 @@ logs
*.mSYM
*.generated.cs
x86
bcl-test/templates
*.7z

Просмотреть файл

@ -153,7 +153,7 @@ build-% run-% exec-% install-%:
@echo " Where: "
@echo " ios: sim = [simclassic + simunified = [sim32, sim64]]; dev = [devclassic + devunified]"
@echo " tvos/watchos: sim, dev"
@echo " What: The test project to run (BCL tests do not need to be treated specially anymore, just use test project's name)"
@echo " What: The test project to run"
@echo ""
@echo "Example:"
@echo ""
@ -225,12 +225,6 @@ test-macdev-tasks: verify-system-vsmac-xcode-match
$(Q) $(DOTNET) build "/bl:$@.binlog" $(TOP)/tests/msbuild/Xamarin.MacDev.Tasks.Tests/Xamarin.MacDev.Tasks.Tests.csproj /p:Configuration=Debug $(DOTNET_BUILD_VERBOSITY)
cd $(TOP)/tests/msbuild/Xamarin.MacDev.Tasks.Tests && $(SYSTEM_XIBUILD) -t -- $(abspath $(TOP)/tools/nunit3-console-3.11.1) $(abspath $(TOP)/tests/msbuild/Xamarin.MacDev.Tasks.Tests/bin/Debug/net472/Xamarin.MacDev.Tasks.Tests.dll) "--result=$(abspath $(CURDIR)/TestResults_Xamarin.MacDev.Tasks.Tests.xml)" -labels=After $(TEST_FIXTURE)
test-install-sources:
$(SYSTEM_XIBUILD) -- $(TOP)/tools/install-source/InstallSourcesTests/InstallSourcesTests.csproj
cd $(NUNIT_MSBUILD_DIR) && $(SYSTEM_XIBUILD) -t -- ../nunit-console.exe ../../../../tools/install-source/InstallSourcesTests/bin/Release/InstallSourcesTests.dll -xml=TestResults_InstallSourcesTests.xml -labels $(TEST_FIXTURE) || touch .failed-stamp
@[[ -z "$$BUILD_REPOSITORY" ]] || ( xsltproc $(TOP)/tests/HtmlTransform.xslt $(NUNIT_MSBUILD_DIR)/TestResults_InstallSourcesTests.xml > $(TOP)/tests/index.html && echo "@MonkeyWrench: AddFile: $$PWD/index.html" )
@if test -e $(NUNIT_MSBUILD_DIR)/.failed-stamp; then rm $(NUNIT_MSBUILD_DIR)/.failed-stamp; exit 1; fi
mac-test-package.zip:
ifdef INCLUDE_MAC
./package-mac-tests.sh
@ -322,9 +316,6 @@ wrench-docs:
wrench-sim-%:
@echo Not here anymore
wrench-bcl-sim-%:
@echo Not here anymore
wrench-%:
@echo Not here anymore
@ -335,9 +326,6 @@ wrench-jenkins: $(XHARNESS_EXECUTABLE)
@echo "@MonkeyWrench: AddFile: $(abspath $(CURDIR))/TestSummary.md"
$(Q) if test -e $@-failed.stamp; then EC=`cat $@-failed.stamp`; rm -f $@-failed.stamp; exit $$EC; fi
wrench-xtro:
@echo Not here anymore
jenkins: $(XHARNESS_EXECUTABLE)
$(Q) $(DOTNET) $< $(XHARNESS_VERBOSITY) --jenkins --autoconf --rootdir $(CURDIR) --sdkroot $(XCODE_DEVELOPER_ROOT) --markdown-summary=$(abspath $(CURDIR))/TestSummary.md --use-system=true $(TESTS_EXTRA_ARGUMENTS) $(TESTS_PERIODIC_COMMAND)
@ -364,7 +352,6 @@ package-test-libraries.zip:
$(Q_GEN) cd $(TOP) && zip -9r --symlinks $(abspath $@).tmp ./tests/test-libraries
$(Q_GEN) cd $(TOP) && zip -9r --symlinks $(abspath $@).tmp ./tests/mono-native/macOS/unified ./tests/mono-native/macOS/compat
$(Q_GEN) cd $(TOP) && zip -9r --symlinks $(abspath $@).tmp ./tests/mono-native/iOS/unified ./tests/mono-native/iOS/compat
$(Q_GEN) cd $(TOP) && zip -9r --symlinks $(abspath $@).tmp ./tests/bcl-test/generated ./tests/bcl-test/templates
$(Q_GEN) cd $(TOP) && find tests -regex '.*/generated-projects/.*[c|f]sproj' -exec zip -9r --symlinks $(abspath $@).tmp {} +
$(Q_GEN) cd $(TOP) && find tests -regex '.*/generated-projects/.*sln' -exec zip -9r --symlinks $(abspath $@).tmp {} +
$(Q_GEN) cd $(TOP) && find tests -regex 'tests/test-libraries/custom-type-assembly/.libs/.*dll' -exec zip -9r --symlinks $(abspath $@).tmp {} +

Просмотреть файл

@ -84,7 +84,6 @@ Many tests when run for macOS use a integration [hack](https://github.com/xamari
- Allowing command line arguments to tests while excluding "psn" arguments passed in while debugging with Visual Studio for Mac
- Invoking `_exit` to work around a number of post-test hangs. See the [bug](https://bugzilla.xamarin.com/show_bug.cgi?id=52604) for details.
- Add a number of "default" excludes for mono BCL tests
One very useful "hack" this support adds is the ability to run a single test from the command line via the `XM_TEST_NAME` environmental variable. For example
@ -120,18 +119,6 @@ Use the project defaults for linking, i.e.
* "Link SDK assemblies only" for both simulator/devices
## bcl-test
These are the Mono BCL test suite tweaked to run on the mobile profile.
It reuse the files directly from mono's repository (linking, not copying).
As other unit tests the configuration is set to mimick normal apps, e.g.
* "Don't link" for simulator
* "Link SDK assemblies only" for devices
# Common make targets
Run every test in both the simulator and on device, using both the compat and the new profile (for the simulator both in 32 and 64bit mode).
@ -189,11 +176,11 @@ These targets will build, install (if applicable) and run the specified project(
* Simulator
* run-sim-*project*: Builds and runs the specified test project in the simulator in compat, 32 and 64bit mode.
* run-sim: Builds and runs all the non-bcl test projects in the simulator in compat, 32 and 64bit mode.
* run-sim: Builds and runs all the test projects in the simulator in compat, 32 and 64bit mode.
* Device
* run-dev-*project*: Builds and runs the specified non-bcl test project on a device in compat and native mode (if it's 32 and 64bit depends on the device; 64bit devices will run in 64bit mode and the same for 32bit devices).
* run-devcompat: Run all the non-bcl test projects on device, in compat mode.
* run-devdual: Run all the non-bcl test projects on device, in native mode (if it's 32 and 64bit depends on the device; 64bit devices will run in 64bit mode and the same for 32bit devices).
* run-dev: Run all the non-bcl test projects on device, in both compat and native mode.
* run-dev-*project*: Builds and runs the specified test project on a device in compat and native mode (if it's 32 and 64bit depends on the device; 64bit devices will run in 64bit mode and the same for 32bit devices).
* run-devcompat: Run all the test projects on device, in compat mode.
* run-devdual: Run all the test projects on device, in native mode (if it's 32 and 64bit depends on the device; 64bit devices will run in 64bit mode and the same for 32bit devices).
* run-dev: Run all the test projects on device, in both compat and native mode.

3
tests/bcl-test/.gitignore поставляемый
Просмотреть файл

@ -1,3 +0,0 @@
*/*.csproj
*/*.sln
*.exe

Просмотреть файл

@ -1,41 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleName</key>
<string>BCLTests</string>
<key>CFBundleIdentifier</key>
<string>com.xamarin.BCLTests</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>MinimumOSVersion</key>
<string>12.2</string>
<key>UIDeviceFamily</key>
<array>
<integer>1</integer>
<integer>2</integer>
</array>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>arm64</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>XSAppIconAssets</key>
<string>Assets.xcassets/AppIcon.appiconset</string>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
</dict>
</plist>

Просмотреть файл

@ -1,36 +0,0 @@
<linker>
<assembly fullname="System">
<type fullname="System.Text.RegularExpressions.CollectionDebuggerProxy`1" preserve="all" />
</assembly>
<assembly fullname="System.Core">
<type fullname="System.Dynamic.BindingRestrictions/BindingRestrictionsProxy" preserve="all" />
<type fullname="System.Dynamic.ExpandoObject/KeyCollectionDebugView" preserve="all" />
<type fullname="System.Dynamic.ExpandoObject/ValueCollectionDebugView" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/BinaryExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/BlockExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/CatchBlockProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/ConditionalExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/ConstantExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/DebugInfoExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/DefaultExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/GotoExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/IndexExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/InvocationExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/LabelExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/LambdaExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/ListInitExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/LoopExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/MemberExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/MemberInitExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/MethodCallExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/NewArrayExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/NewExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/ParameterExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/RuntimeVariablesExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/SwitchCaseProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/SwitchExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/TryExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/TypeBinaryExpressionProxy" preserve="all" />
<type fullname="System.Linq.Expressions.Expression/UnaryExpressionProxy" preserve="all" />
</assembly>
</linker>

Просмотреть файл

@ -1,325 +0,0 @@
# DEVICE FAILURES
# Exception messages: Microsoft.CSharp.RuntimeBinder.RuntimeBinderException : 'System.MulticastDelegate' does not contain a definition for 'DynamicInvoke'
Microsoft.CSharp.RuntimeBinder.Tests.AccessTests.PrivateDelegateType
# Microsoft.CSharp.RuntimeBinder.RuntimeBinderException : 'System.MulticastDelegate' does not contain a definition for 'DynamicInvoke'
Microsoft.CSharp.RuntimeBinder.Tests.AccessTests.PrivateValueTypeDelegateType
# System.ExecutionEngineException : Attempting to JIT compile method 'object:GetType ()'
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 2, expected: 4) Test name: Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 2, expected: 4)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 1, expected: C) Test name: Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 1, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 9223372036854775807, expected: -9223372036854775807)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 18446744073709551615, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 2147483647, expected: -2147483648)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 2, expected: 4)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 4294967295, expected: 4294967295)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 0, expected: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 0, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: -9223372036854775808, expected: -9223372036854775806)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 0, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 2, expected: 3)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 0, expected: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 1, expected: 3)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 0, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 2, expected: 4)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 1, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 2, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 127, expected: 127)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 255, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 0, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 1, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 2, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 0, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 2, expected: 3)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 0, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 2, expected: 3)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 1, expected: 3)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 1, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 1, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: -32768, expected: -32768)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 18446744073709551615, expected: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 1, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 0, expected: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 2, expected: 4)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 2, expected: 3)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 0, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 127, expected: -128)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: -128, expected: -128)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 2, expected: 3)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 4294967295, expected: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 1, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 0, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 65535, expected: 65535)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 1, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 0, expected: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 255, expected: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 32767, expected: -32767)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 2, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 2, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 1, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 0, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 2, expected: 4)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 32767, expected: 32767)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 0, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 1, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: -9223372036854775808, expected: -9223372036854775808)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 65535, expected: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 1, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 1, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 0, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 1, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 32767, expected: -32768)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 0, expected: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 1, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 9223372036854775807, expected: 9223372036854775807)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 2, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 18446744073709551615, expected: 18446744073709551615)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 1, expected: 3)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 1, expected: 3)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: -2147483648, expected: -2147483647)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 2, expected: 3)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 2, expected: 4)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 4294967295, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 2, expected: 3)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 0, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: -128, expected: -127)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 0, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 1, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 0, expected: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 2, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 0, expected: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 65535, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 0, expected: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 0, expected: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 1, expected: 3)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: -2147483648, expected: -2147483648)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: -128, expected: -126)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 2, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 1, expected: 3)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 2, expected: 4)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 127, expected: -127)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 2147483647, expected: -2147483647)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 0, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 1, expected: 3)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: -9223372036854775808, expected: -9223372036854775807)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 2, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: -32768, expected: -32766)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: -32768, expected: -32767)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: -2147483648, expected: -2147483646)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 9223372036854775807, expected: -9223372036854775808)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 0, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 1, expected: 3)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 2147483647, expected: 2147483647)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 2, expected: 3)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: B, integralVal: 1, expected: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: C, integralVal: 2, expected: 4)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumAddition(enumVal: A, integralVal: 255, expected: 255)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 2, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 1, enMinusIn: B, inMinusEn: -1)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 1, enMinusIn: -1, inMinusEn: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 65535, enMinusIn: B, inMinusEn: 65535)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 2, enMinusIn: 65534, inMinusEn: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 2, enMinusIn: 18446744073709551615, inMinusEn: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 255, enMinusIn: 3, inMinusEn: 253)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: -32768, enMinusIn: -32768, inMinusEn: -32768)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 1, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 2, enMinusIn: -1, inMinusEn: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 1, enMinusIn: -1, inMinusEn: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 1, enMinusIn: B, inMinusEn: 255)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 0, enMinusIn: C, inMinusEn: 18446744073709551614)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 127, enMinusIn: -125, inMinusEn: 125)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 0, enMinusIn: C, inMinusEn: -2)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 0, enMinusIn: C, inMinusEn: -2)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 2147483647, enMinusIn: -2147483647, inMinusEn: 2147483647)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: -128, enMinusIn: -127, inMinusEn: 127)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 32767, enMinusIn: -32766, inMinusEn: 32766)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 2, enMinusIn: 65535, inMinusEn: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 4294967295, enMinusIn: C, inMinusEn: 4294967294)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 0, enMinusIn: B, inMinusEn: 4294967295)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 18446744073709551615, enMinusIn: B, inMinusEn: 18446744073709551615)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 0, enMinusIn: C, inMinusEn: 4294967294)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 2147483647, enMinusIn: -2147483646, inMinusEn: 2147483646)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 2, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 1, enMinusIn: B, inMinusEn: -1)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 1, enMinusIn: 4294967295, inMinusEn: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 0, enMinusIn: B, inMinusEn: -1)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 18446744073709551615, enMinusIn: 3, inMinusEn: 18446744073709551613)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 0, enMinusIn: B, inMinusEn: -1)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 2, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 0, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 1, enMinusIn: -1, inMinusEn: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 127, enMinusIn: -127, inMinusEn: 127)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 1, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 2, enMinusIn: 18446744073709551614, inMinusEn: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: -9223372036854775808, enMinusIn: -9223372036854775807, inMinusEn: 9223372036854775807)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 0, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 2, enMinusIn: -2, inMinusEn: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 0, enMinusIn: C, inMinusEn: 254)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 1, enMinusIn: B, inMinusEn: 65535)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 1, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 18446744073709551615, enMinusIn: C, inMinusEn: 18446744073709551614)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 2, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 2, enMinusIn: 4294967295, inMinusEn: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: -32768, enMinusIn: -32767, inMinusEn: 32767)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 65535, enMinusIn: 3, inMinusEn: 65533)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 0, enMinusIn: B, inMinusEn: 65535)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 2, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 1, enMinusIn: 255, inMinusEn: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 0, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 0, enMinusIn: C, inMinusEn: -2)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 1, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 1, enMinusIn: B, inMinusEn: -1)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 1, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 9223372036854775807, enMinusIn: -9223372036854775806, inMinusEn: 9223372036854775806)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 1, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 2, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: -2147483648, enMinusIn: -2147483646, inMinusEn: 2147483646)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 2, enMinusIn: -1, inMinusEn: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 65535, enMinusIn: C, inMinusEn: 65534)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 0, enMinusIn: C, inMinusEn: 65534)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 9223372036854775807, enMinusIn: -9223372036854775807, inMinusEn: 9223372036854775807)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 2147483647, enMinusIn: -2147483645, inMinusEn: 2147483645)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 1, enMinusIn: 18446744073709551615, inMinusEn: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 2, enMinusIn: -2, inMinusEn: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 32767, enMinusIn: -32767, inMinusEn: 32767)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 9223372036854775807, enMinusIn: -9223372036854775805, inMinusEn: 9223372036854775805)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 0, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 2, enMinusIn: -2, inMinusEn: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 1, enMinusIn: B, inMinusEn: 4294967295)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: -128, enMinusIn: -126, inMinusEn: 126)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 0, enMinusIn: B, inMinusEn: 18446744073709551615)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 0, enMinusIn: B, inMinusEn: 18446744073709551615)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 127, enMinusIn: -126, inMinusEn: 126)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 0, enMinusIn: B, inMinusEn: -1)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 0, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 1, enMinusIn: B, inMinusEn: 18446744073709551615)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 2, enMinusIn: 4294967294, inMinusEn: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 0, enMinusIn: B, inMinusEn: -1)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 2, enMinusIn: -1, inMinusEn: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 1, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 4294967295, enMinusIn: B, inMinusEn: 4294967295)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 0, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 2, enMinusIn: -2, inMinusEn: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: -32768, enMinusIn: -32766, inMinusEn: 32766)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: -9223372036854775808, enMinusIn: -9223372036854775808, inMinusEn: -9223372036854775808)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: -2147483648, enMinusIn: -2147483647, inMinusEn: 2147483647)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 1, enMinusIn: -1, inMinusEn: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 2, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 1, enMinusIn: 65535, inMinusEn: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: -128, enMinusIn: -128, inMinusEn: -128)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 2, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 32767, enMinusIn: -32765, inMinusEn: 32765)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 255, enMinusIn: C, inMinusEn: 254)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 2, enMinusIn: -1, inMinusEn: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 0, enMinusIn: C, inMinusEn: -2)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 2, enMinusIn: 255, inMinusEn: B)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: -9223372036854775808, enMinusIn: -9223372036854775806, inMinusEn: 9223372036854775806)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 0, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 1, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 1, enMinusIn: B, inMinusEn: -1)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 0, enMinusIn: A, inMinusEn: A)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: -2147483648, enMinusIn: -2147483648, inMinusEn: -2147483648)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 2, enMinusIn: 254, inMinusEn: C)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: A, integralVal: 255, enMinusIn: B, inMinusEn: 255)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 0, expected: B, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 2, expected: 3, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 1, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 2, expected: 4, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 1, expected: B, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 2, expected: 4, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 1, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 2, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 2, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 9223372036854775807, expected: 9223372036854775807, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 2, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 2, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 0, expected: A, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 0, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: -2147483648, expected: -2147483647, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 0, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 32767, expected: 32767, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: -32768, expected: -32766, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 1, expected: B, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: -2147483648, expected: -2147483648, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 1, expected: 3, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: -128, expected: -126, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 1, expected: B, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 2, expected: 3, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 0, expected: A, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 1, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 0, expected: B, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 1, expected: 3, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 2, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 0, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 2, expected: 3, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 127, expected: 127, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 0, expected: B, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 2, expected: 4, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 2, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 1, expected: B, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: -9223372036854775808, expected: -9223372036854775807, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 2, expected: 3, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 0, expected: A, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 0, expected: B, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 2, expected: 4, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 2, expected: 3, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 0, expected: B, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 1, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 1, expected: 3, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 1, expected: B, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 1, expected: 3, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 1, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 0, expected: B, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 2147483647, expected: 2147483647, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 1, expected: B, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 0, expected: A, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 2, expected: 3, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 4294967295, expected: 4294967295, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 0, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 2, expected: 3, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 0, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 2, expected: 4, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 0, expected: B, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: -128, expected: -127, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 1, expected: B, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: -9223372036854775808, expected: -9223372036854775806, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 0, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 2, expected: 3, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: -128, expected: -128, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: -9223372036854775808, expected: -9223372036854775808, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 1, expected: 3, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 2, expected: 4, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 2, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 0, expected: A, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 0, expected: A, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 1, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 1, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: -32768, expected: -32768, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 0, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 65535, expected: 65535, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 2, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 18446744073709551615, expected: 18446744073709551615, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 0, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 0, expected: B, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 1, expected: B, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: -2147483648, expected: -2147483646, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 2, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: -32768, expected: -32767, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: 1, expected: C, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 0, expected: A, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: 255, expected: 255, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 2, expected: 4, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 1, expected: 3, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 1, expected: 3, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: 2, expected: 4, shouldThrow: False)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: C, integralVal: 4294967295, enMinusIn: 3, inMinusEn: 4294967293)
Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.EnumSubtraction(enumVal: B, integralVal: 0, enMinusIn: B, inMinusEn: 255)
# fail on iOS 32b devices, to be fixed by mono: https://github.com/mono/mono/issues/15263
Platform32:Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: -32768, expected: -32768, shouldThrow: True)
Platform32:Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: -32768, expected: -32766, shouldThrow: True)
Platform32:Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: -128, expected: -127, shouldThrow: True)
Platform32:Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: A, integralVal: -128, expected: -128, shouldThrow: True)
Platform32:Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: C, integralVal: -128, expected: -126, shouldThrow: True)
Platform32:Microsoft.CSharp.RuntimeBinder.Tests.EnumArithmeticTests.CheckedEnumAddition(enumVal: B, integralVal: -32768, expected: -32767, shouldThrow: True)

Просмотреть файл

@ -1,566 +0,0 @@
# Exception messages: System.PlatformNotSupportedException : Operation is not supported on this platform.
System.IO.Pipes.Tests.AnonymousPipeTest_CreateClient.CreateClientStreamFromStringHandle_Valid
System.IO.Pipes.Tests.AnonymousPipeTest_CreateServer.InOutPipeDirection_Throws_NotSupportedException
System.IO.Pipes.Tests.AnonymousPipeTest_CreateServer.ValidConstructors
System.IO.Pipes.Tests.AnonymousPipeTest_CreateServer.InvalidPipeHandle_Throws
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerIn_ClientOut.ValidWriteAsync_ValidReadAsync_APM
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerIn_ClientOut.ReadFromPipeWithClosedPartner_ReadNoBytes
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerIn_ClientOut.ReadWithZeroLengthBuffer_Nop
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerIn_ClientOut.ReadWithNegativeCount_Throws_ArgumentOutOfRangeException
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerIn_ClientOut.ReadWithNullBuffer_Throws_ArgumentNullException
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerIn_ClientOut.ReadOnDisposedReadablePipe_Throws_ObjectDisposedException
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerIn_ClientOut.ReadPipeUnsupportedMembers_Throws_NotSupportedException
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerIn_ClientOut.ValidWrite_ValidRead
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerIn_ClientOut.CopyToAsync_InvalidArgs_Throws
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerIn_ClientOut.ValidWriteAsync_ValidReadAsync
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerIn_ClientOut.ReadWithNegativeOffset_Throws_ArgumentOutOfRangeException
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerIn_ClientOut.ReadWithOutOfBoundsArray_Throws_ArgumentException
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerIn_ClientOut.ValidWriteByte_ValidReadByte
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerIn_ClientOut.WriteToReadOnlyPipe_Throws_NotSupportedException
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerOut_ClientIn.ValidWriteAsync_ValidReadAsync
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerOut_ClientIn.ReadFromPipeWithClosedPartner_ReadNoBytes
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerOut_ClientIn.ReadWithNegativeOffset_Throws_ArgumentOutOfRangeException
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerOut_ClientIn.WriteToReadOnlyPipe_Throws_NotSupportedException
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerOut_ClientIn.ValidWriteAsync_ValidReadAsync_APM
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerOut_ClientIn.ValidWrite_ValidRead
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerOut_ClientIn.CopyToAsync_InvalidArgs_Throws
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerOut_ClientIn.ValidWriteByte_ValidReadByte
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerOut_ClientIn.ReadWithZeroLengthBuffer_Nop
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerOut_ClientIn.ReadWithNegativeCount_Throws_ArgumentOutOfRangeException
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerOut_ClientIn.ReadWithOutOfBoundsArray_Throws_ArgumentException
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerOut_ClientIn.ReadPipeUnsupportedMembers_Throws_NotSupportedException
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerOut_ClientIn.ReadOnDisposedReadablePipe_Throws_ObjectDisposedException
System.IO.Pipes.Tests.AnonymousPipeTest_Read_ServerOut_ClientIn.ReadWithNullBuffer_Throws_ArgumentNullException
System.IO.Pipes.Tests.AnonymousPipeTest_Specific.PipeTransmissionMode_Returns_Byte
System.IO.Pipes.Tests.AnonymousPipeTest_Specific.ClonedClient_ActsAsOriginalClient
System.IO.Pipes.Tests.AnonymousPipeTest_Specific.DisposeLocalCopyOfClientHandle_BeforeServerRead
System.IO.Pipes.Tests.AnonymousPipeTest_Specific.ReadModeToByte_Accepted(serverDirection: Out, clientDirection: In)
System.IO.Pipes.Tests.AnonymousPipeTest_Specific.ReadModeToByte_Accepted(serverDirection: In, clientDirection: Out)
System.IO.Pipes.Tests.AnonymousPipeTest_Specific.ClonedServer_ActsAsOriginalServer
System.IO.Pipes.Tests.AnonymousPipeTest_Specific.InvalidReadMode_Throws_ArgumentOutOfRangeException
System.IO.Pipes.Tests.AnonymousPipeTest_Specific.MessageReadMode_Throws_NotSupportedException
System.IO.Pipes.Tests.AnonymousPipeTest_Specific.OSX_BufferSizeNotSupported
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerIn_ClientOut.WritePipeUnsupportedMembers_Throws_NotSupportedException
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerIn_ClientOut.ValidFlush_DoesntThrow
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerIn_ClientOut.WriteWithOutOfBoundsArray_Throws_ArgumentException
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerIn_ClientOut.WriteToDisposedWriteablePipe_Throws_ObjectDisposedException
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerIn_ClientOut.WriteToPipeWithClosedPartner_Throws_IOException
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerIn_ClientOut.WriteWithNegativeOffset_Throws_ArgumentOutOfRangeException
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerIn_ClientOut.WriteWithNegativeCount_Throws_ArgumentOutOfRangeException
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerIn_ClientOut.WriteZeroLengthBuffer_Nop
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerIn_ClientOut.ReadOnWriteOnlyPipe_Throws_NotSupportedException
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerIn_ClientOut.WriteWithNullBuffer_Throws_ArgumentNullException
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerOut_ClientIn.WriteToDisposedWriteablePipe_Throws_ObjectDisposedException
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerOut_ClientIn.ValidFlush_DoesntThrow
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerOut_ClientIn.WriteWithNegativeCount_Throws_ArgumentOutOfRangeException
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerOut_ClientIn.WritePipeUnsupportedMembers_Throws_NotSupportedException
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerOut_ClientIn.WriteWithNegativeOffset_Throws_ArgumentOutOfRangeException
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerOut_ClientIn.WriteZeroLengthBuffer_Nop
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerOut_ClientIn.ReadOnWriteOnlyPipe_Throws_NotSupportedException
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerOut_ClientIn.WriteWithOutOfBoundsArray_Throws_ArgumentException
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerOut_ClientIn.WriteToPipeWithClosedPartner_Throws_IOException
System.IO.Pipes.Tests.AnonymousPipeTest_Write_ServerOut_ClientIn.WriteWithNullBuffer_Throws_ArgumentNullException
System.IO.Pipes.Tests.TestPipeStream.TestCheckReadWrite
System.IO.Pipes.Tests.TestPipeStream.TestCheckPipePropertyOperations_Unix
System.IO.Pipes.Tests.TestPipeStream.TestInitializeHandle
System.IO.Pipes.Tests.AnonymousPipeTest_CreateClient.NullParameters_Throws_ArgumentNullException
System.IO.Pipes.Tests.AnonymousPipeTest_CreateClient.CreateClientStreamFromStringHandle_Valid
System.IO.Pipes.Tests.AnonymousPipeTest_CreateClient.InvalidStringParameters_Throws_ArgumentException
System.IO.Pipes.Tests.AnonymousPipeTest_CreateClient.InvalidPipeHandle_Throws_ArgumentException
System.IO.Pipes.Tests.AnonymousPipeTest_CreateClient.InOutPipeDirection_Throws_NotSupportedException
System.IO.Pipes.Tests.AnonymousPipeTest_CreateServer.InOutPipeDirection_Throws_NotSupportedException
System.IO.Pipes.Tests.AnonymousPipeTest_CreateServer.ServerBadInheritabilityThrows
System.IO.Pipes.Tests.AnonymousPipeTest_CreateServer.InvalidBufferSize_Throws_ArgumentOutOfRangeException
System.IO.Pipes.Tests.AnonymousPipeTest_CreateServer.InvalidPipeDirection_Throws_ArgumentOutOfRangeException
System.IO.Pipes.Tests.AnonymousPipeTest_CreateServer.InvalidPipeHandle_Throws
System.IO.Pipes.Tests.AnonymousPipeTest_CreateServer.ValidConstructors
System.IO.Pipes.Tests.AnonymousPipeTest_CreateClient.InvalidStringParameters_Throws_ArgumentException(handle: "abc")
System.IO.Pipes.Tests.AnonymousPipeTest_CreateClient.InvalidStringParameters_Throws_ArgumentException(handle: "-1")
System.IO.Pipes.Tests.AnonymousPipeTest_CreateServer.InvalidBufferSize_Throws_ArgumentOutOfRangeException(direction: InOut, bufferSize: -500)
System.IO.Pipes.Tests.AnonymousPipeTest_CreateServer.InvalidBufferSize_Throws_ArgumentOutOfRangeException(direction: In, bufferSize: -500)
System.IO.Pipes.Tests.AnonymousPipeTest_CreateServer.InvalidBufferSize_Throws_ArgumentOutOfRangeException(direction: Out, bufferSize: -500)
System.IO.Pipes.Tests.AnonymousPipeTest_CreateServer.ServerBadInheritabilityThrows(direction: In, inheritability: 999)
System.IO.Pipes.Tests.AnonymousPipeTest_CreateServer.ServerBadInheritabilityThrows(direction: Out, inheritability: 999)
# System.NotImplementedException
System.Linq.Expressions.Tests.ParameterTests.CanUseAsLambdaByRefParameter_String(useInterpreter: True)
System.Linq.Expressions.Tests.ParameterTests.CanWriteToRefParameter(useInterpreter: True)
System.Linq.Expressions.Tests.ParameterTests.CanUseAsLambdaByRefParameter(useInterpreter: True)
System.Linq.Expressions.Tests.ParameterTests.CanUseAsLambdaByRefParameter_Bool(useInterpreter: True)
System.Linq.Expressions.Tests.ParameterTests.CanUseAsLambdaByRefParameter_Char(useInterpreter: True)
System.Linq.Expressions.Tests.ParameterTests.CanReadFromRefParameter(useInterpreter: True)
System.Linq.Expressions.Tests.SwitchTests.JumpBetweenCases(useIntepreter: True)
System.Linq.Expressions.Tests.SwitchTests.NoDefaultOrCasesSwitchWithSideEffect(useInterpreter: True)
System.Linq.Expressions.Tests.ParameterTests.ReadAndWriteRefParameters
System.Linq.Expressions.Tests.SwitchTests.DefaultOnlySwitchWithSideEffect(useInterpreter: True)
System.Linq.Expressions.Tests.Compiler_Tests.CallCompiledLambdaWithTypeMissing(useInterpreter: True)
System.Linq.Expressions.Tests.NewWithByRefParameterTests.CreateByRefAliasingCompiled
System.Linq.Expressions.Tests.NewWithByRefParameterTests.CreateByRefThrowing(useInterpreter: True)
System.Linq.Expressions.Tests.NewWithByRefParameterTests.CreateByRefReferencingReadonly(useInterpreter: True)
System.Linq.Expressions.Tests.NewWithByRefParameterTests.CreateByRef(useInterpreter: True)
System.Linq.Expressions.Tests.NewWithByRefParameterTests.CreateOut(useInterpreter: True)
System.Linq.Expressions.Tests.InvocationTests.InvokeByRefLambda(useInterpreter: True)
System.Linq.Expressions.Tests.ConvertTests.CustomConversionNotStandardNameFromLiftedByRef(useInterpreter: True)
System.Linq.Expressions.Tests.ConvertTests.CustomConversionNotStandardNameFromByRef(useInterpreter: True)
System.Linq.Expressions.Tests.OpAssign.ConvertOpWriteByRefParameterOverloadedOperator(useInterpreter: True)
System.Dynamic.Tests.DynamicObjectTests.ByRefInvoke
# System.PlatformNotSupportedException : Operation is not supported on this platform.
System.Linq.Expressions.Tests.NewTests.GlobalMethodInMembers
System.Linq.Expressions.Tests.NewTests.GlobalFieldInMembers
System.Linq.Expressions.Tests.MemberBindTests.GlobalMethod
System.Linq.Expressions.Tests.ListBindTests.GlobalMethod
System.Linq.Expressions.Tests.InvocationTests.InvokePrivateDelegate(useInterpreter: True)
System.Linq.Expressions.Tests.InvocationTests.InvokePrivateDelegateTypeLambda(useInterpreter: True)
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeAction(typeArgs: [typeof(int), typeof(System.Int32&), typeof(string)])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeAction(typeArgs: [typeof(int), typeof(int), typeof(int), typeof(int), typeof(int), ...])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeAction(typeArgs: [typeof(System.Int32*), typeof(System.Int32*), typeof(System.Int32*), typeof(System.Int32*), typeof(System.Int32*), ...])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeAction(typeArgs: [typeof(System.Int32&)])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeAction(typeArgs: [typeof(string), typeof(System.Double*), typeof(int)])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeAction(typeArgs: [typeof(System.String*)])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeAction(typeArgs: [typeof(System.Int32*)])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeAction(typeArgs: [typeof(System.Collections.Generic.List<int>), typeof(System.Collections.Generic.List<int>), typeof(System.Collections.Generic.List<int>), typeof(System.Collections.Generic.List<int>), typeof(System.Collections.Generic.List<int>), ...])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeAction(typeArgs: [typeof(System.Double&), typeof(System.Double&), typeof(System.Double&), typeof(System.Double&), typeof(System.Double&), ...])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeAction(typeArgs: [typeof(int), typeof(System.String*), typeof(double)])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeAction(typeArgs: [typeof(System.String*), typeof(System.String*), typeof(System.String*), typeof(System.String*), typeof(System.String*), ...])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeFunc(typeArgs: [typeof(System.Int32*)])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeFunc(typeArgs: [typeof(int), typeof(System.Int32&), typeof(string)])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeFunc(typeArgs: [typeof(string), typeof(System.Double*), typeof(int)])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeFunc(typeArgs: [typeof(System.Int32&)])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeFunc(typeArgs: [typeof(int), typeof(System.String*), typeof(double)])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeFunc(typeArgs: [typeof(System.String*), typeof(System.String*), typeof(System.String*), typeof(System.String*), typeof(System.String*), ...])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeFunc(typeArgs: [typeof(System.Collections.Generic.List<int>), typeof(System.Collections.Generic.List<int>), typeof(System.Collections.Generic.List<int>), typeof(System.Collections.Generic.List<int>), typeof(System.Collections.Generic.List<int>), ...])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeFunc(typeArgs: [typeof(System.String*)])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeFunc(typeArgs: [typeof(System.Int32*), typeof(System.Int32*), typeof(System.Int32*), typeof(System.Int32*), typeof(System.Int32*), ...])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeFunc(typeArgs: [typeof(System.Double&), typeof(System.Double&), typeof(System.Double&), typeof(System.Double&), typeof(System.Double&), ...])
System.Linq.Expressions.Tests.GetDelegateTypeTests.CantBeFunc(typeArgs: [typeof(int), typeof(int), typeof(int), typeof(int), typeof(int), ...])
System.Linq.Expressions.Tests.ConstantTests.CheckTypeConstantTest(useInterpreter: True)
System.Linq.Expressions.Tests.ConstantTests.CheckMethodInfoConstantTest(useInterpreter: True)
System.Linq.Expressions.Tests.CastTests.CanCastEnumTypeToUnderlyingType
System.Linq.Expressions.Tests.CastTests.CannotCastWrongUnderlyingTypeEnumChecked
System.Linq.Expressions.Tests.CastTests.CannotCastWrongUnderlyingTypeEnum
System.Linq.Expressions.Tests.CastTests.CanCastUnderlyingTypeToEnumTypeChecked
System.Linq.Expressions.Tests.CastTests.CanCastUnderlyingTypeToEnumType
System.Linq.Expressions.Tests.CastTests.CannotCastReferenceToWrongUnderlyingTypeEnumChecked
System.Linq.Expressions.Tests.CastTests.CanCastReferenceToUnderlyingTypeToEnumTypeChecked
System.Linq.Expressions.Tests.CastTests.CannotCastReferenceToWrongUnderlyingTypeEnum
System.Linq.Expressions.Tests.CastTests.CanCastEnumTypeToUnderlyingTypeChecked
System.Linq.Expressions.Tests.CastTests.CanCastReferenceToUnderlyingTypeToEnumType
System.Linq.Expressions.Tests.BinaryLogicalTests.Method_FalseOperatorIncorrectMethod_ThrowsArgumentException
System.Linq.Expressions.Tests.BinaryLogicalTests.OrElse_NoMethod_TrueOperatorIncorrectMethod_ThrowsArgumentException
System.Linq.Expressions.Tests.BinaryLogicalTests.Method_ParamsDontMatchOperator_ThrowsInvalidOperationException
System.Linq.Expressions.Tests.BinaryLogicalTests.AndAlso_NoMethod_VoidReturnType_ThrowsArgumentException
System.Linq.Expressions.Tests.BinaryLogicalTests.AndAlso_NoMethod_NotStatic_ThrowsInvalidOperationException
System.Linq.Expressions.Tests.BinaryLogicalTests.AndAlso_NoMethod_TrueOperatorIncorrectMethod_ThrowsArgumentException
System.Linq.Expressions.Tests.BinaryLogicalTests.OrElse_NoMethod_ReturnTypeNotEqualToParameterTypes_ThrowsArgumentException
System.Linq.Expressions.Tests.BinaryLogicalTests.AndAlsoGlobalMethod
System.Linq.Expressions.Tests.BinaryLogicalTests.AndAlso_NoMethod_ParamsDontMatchOperator_ThrowsInvalidOperationException
System.Linq.Expressions.Tests.BinaryLogicalTests.OrElse_NoMethod_NoTrueFalseOperator_ThrowsArgumentException(name: "op_False")
System.Linq.Expressions.Tests.BinaryLogicalTests.OrElse_NoMethod_NoTrueFalseOperator_ThrowsArgumentException(name: "op_True")
System.Linq.Expressions.Tests.BinaryLogicalTests.Method_NoTrueFalseOperator_ThrowsArgumentException(name: "op_True")
System.Linq.Expressions.Tests.BinaryLogicalTests.Method_NoTrueFalseOperator_ThrowsArgumentException(name: "op_False")
System.Linq.Expressions.Tests.BinaryLogicalTests.AndAlso_NoMethod_NoTrueFalseOperator_ThrowsArgumentException(name: "op_False")
System.Linq.Expressions.Tests.BinaryLogicalTests.AndAlso_NoMethod_NoTrueFalseOperator_ThrowsArgumentException(name: "op_True")
System.Linq.Expressions.Tests.BinaryLogicalTests.OrElse_NoMethod_ExpressionDoesntMatchMethodParameters_ThrowsInvalidOperationException
System.Linq.Expressions.Tests.BinaryLogicalTests.AndAlso_NoMethod_DoesntHaveTwoParameters_ThrowsInvalidOperationException(parameterCount: 3)
System.Linq.Expressions.Tests.BinaryLogicalTests.AndAlso_NoMethod_DoesntHaveTwoParameters_ThrowsInvalidOperationException(parameterCount: 1)
System.Linq.Expressions.Tests.BinaryLogicalTests.AndAlso_NoMethod_DoesntHaveTwoParameters_ThrowsInvalidOperationException(parameterCount: 0)
System.Linq.Expressions.Tests.BinaryLogicalTests.OrElse_NoMethod_DoesntHaveTwoParameters_ThrowsInvalidOperationException(parameterCount: 0)
System.Linq.Expressions.Tests.BinaryLogicalTests.OrElse_NoMethod_DoesntHaveTwoParameters_ThrowsInvalidOperationException(parameterCount: 3)
System.Linq.Expressions.Tests.BinaryLogicalTests.OrElse_NoMethod_DoesntHaveTwoParameters_ThrowsInvalidOperationException(parameterCount: 1)
System.Linq.Expressions.Tests.BinaryLogicalTests.Method_TrueOperatorIncorrectMethod_ThrowsArgumentException
System.Linq.Expressions.Tests.BinaryLogicalTests.AndAlso_NoMethod_ReturnTypeNotEqualToParameterTypes_ThrowsArgumentException
System.Linq.Expressions.Tests.BinaryLogicalTests.AndAlso_NoMethod_ExpressionDoesntMatchMethodParameters_ThrowsInvalidOperationException
System.Linq.Expressions.Tests.BinaryLogicalTests.OrElse_NoMethod_VoidReturnType_ThrowsArgumentException
System.Linq.Expressions.Tests.BinaryLogicalTests.OrElse_NoMethod_ParamsDontMatchOperator_ThrowsInvalidOperationException
System.Linq.Expressions.Tests.BinaryLogicalTests.OrElse_NoMethod_NotStatic_ThrowsInvalidOperationException
System.Linq.Expressions.Tests.OpAssign.MethodNoConvertOpWriteByRefParameter
System.Linq.Expressions.Tests.BinaryLogicalTests.OrElseGlobalMethod
# System.ArgumentException : Missing parameter does not have a default value.
System.Linq.Expressions.Tests.Compiler_Tests.CallCompiledLambdaWithTypeMissing
# Expected: 2147483648
# Actual: 0 Exception stack traces: at System.Linq.Expressions.Tests.ConvertTests.VerifyNullableFloatToNullableUInt (System.Nullable`1[T] value, System.Boolean useInterpreter) [0x00035] in /Users/builder/jenkins/workspace/archive-mono/2018-08/ios/release/external/corefx/src/System.Linq.Expressions/tests/Convert/ConvertTests.cs:11802
# at System.Linq.Expressions.Tests.ConvertTests.ConvertNullableFloatToNullableUIntTest (System.Boolean useInterpreter) [0x000a7] in /Users/builder/jenkins/workspace/archive-mono/2018-08/ios/release/external/corefx/src/System.Linq.Expressions/tests/Convert/ConvertTests.cs:3359
# at (wrapper managed-to-native) System.Reflection.MonoMethod.InternalInvoke(System.Reflection.MonoMethod,object,object[],System.Exception&)
System.Linq.Expressions.Tests.ConvertTests.ConvertNullableFloatToNullableUIntTest(useInterpreter: True)
System.Linq.Expressions.Tests.ConvertTests.ConvertFloatToNullableUIntTest(useInterpreter: True)
System.Linq.Expressions.Tests.ConvertTests.ConvertFloatToUIntTest(useInterpreter: True)
System.Linq.Expressions.Tests.ConvertTests.ConvertNullableFloatToUIntTest(useInterpreter: True)
# Exception messages: Assert.NotNull() Failure Exception stack traces: at System.Linq.Expressions.Tests.CompilerTests.VerifyEmitConstantsToIL (System.Linq.Expressions.Expression e, System.Int32 expectedCount, System.Object expectedValue) [0x0001c] in /Users/builder/jenkins/workspace/archive-mono/2018-08/ios/release/external/corefx/src/System.Linq.Expressions/tests/CompilerTests.cs:437
# at System.Linq.Expressions.Tests.CompilerTests.VerifyEmitConstantsToIL[T] (T value, System.Int32 expectedCount) [0x00000] in /Users/builder/jenkins/workspace/archive-mono/2018-08/ios/release/external/corefx/src/System.Linq.Expressions/tests/CompilerTests.cs:429
# at System.Linq.Expressions.Tests.CompilerTests.VerifyEmitConstantsToIL[T] (T value) [0x00000] in /Users/builder/jenkins/workspace/archive-mono/2018-08/ios/release/external/corefx/src/System.Linq.Expressions/tests/CompilerTests.cs:424
# at System.Linq.Expressions.Tests.CompilerTests.EmitConstantsToIL_NonNullableValueTypes () [0x00000] in /Users/builder/jenkins/workspace/archive-mono/2018-08/ios/release/external/corefx/src/System.Linq.Expressions/tests/CompilerTests.cs:57
# at (wrapper managed-to-native) System.Reflection.MonoMethod.InternalInvoke(System.Reflection.MonoMethod,object,object[],System.Exception&)
# at System.Reflection.MonoMethod.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0003b] in /Users/mandel/Xamarin/xamarin-macios/master/xamarin-macios/external/mono/mcs/class/corlib/System.Reflection/MonoMethod.cs:305
System.Linq.Expressions.Tests.CompilerTests.EmitConstantsToIL_NonNullableValueTypes
System.Linq.Expressions.Tests.CompilerTests.EmitConstantsToIL_ShareReferences
System.Linq.Expressions.Tests.CompilerTests.EmitConstantsToIL_ReferenceTypes
System.Linq.Expressions.Tests.CompilerTests.EmitConstantsToIL_NullableValueTypes
System.Linq.Expressions.Tests.CompilerTests.EmitConstantsToIL_LiftedToClosure
System.Linq.Expressions.Tests.CompilerTests.EmitConstantsToIL_Enums
# Exception messages: Assert.Throws() Failure
# Expected: typeof(System.InvalidCastException)
# Actual: typeof(System.NotImplementedException): byref delegate
System.Dynamic.Tests.DynamicObjectTests.ByRefMismatch
## DEVICE FAILURES
# System.NullReferenceException : Object reference not set to an instance of an object
System.Linq.Tests.LegacyTests.ThenByTests.ThenBy1
System.Linq.Tests.LegacyTests.ThenByTests.ThenBy2
System.Linq.Tests.LegacyTests.ThenByTests.SecondaryKeysAreUnique
System.Linq.Tests.UnionTests.CommonElementsShared
System.Linq.Tests.UnionTests.Union1
System.Linq.Tests.ThenByDescendingTests.AscendingKeyThenDescendingKey
System.Linq.Tests.ThenByDescendingTests.ThenByDescending2
System.Linq.Tests.ThenByDescendingTests.ThenByDescending1
System.Linq.Tests.TakeLastTests.TakeLast
System.Linq.Tests.SumTests.Sum20
System.Linq.Tests.SumTests.Sum12
System.Linq.Tests.SumTests.Sum4
System.Linq.Tests.SumTests.SumOfLong_SourceIsEmptyCollection_ZeroReturned
System.Linq.Tests.SumTests.Sum18
System.Linq.Tests.SumTests.Sum5
System.Linq.Tests.SumTests.Sum17
System.Linq.Tests.SumTests.SumOfFloat_SourceIsEmptyCollection_ZeroReturned
System.Linq.Tests.SumTests.Sum15
System.Linq.Tests.SumTests.SumOfNullableOfFloat_SourceIsEmptyCollection_ZeroReturned
System.Linq.Tests.SumTests.Sum8
System.Linq.Tests.SumTests.Sum9
System.Linq.Tests.SumTests.Sum3
System.Linq.Tests.SumTests.Sum7
System.Linq.Tests.SumTests.SumOfDouble_SourceIsEmptyCollection_ZeroReturned
System.Linq.Tests.SumTests.Sum16
System.Linq.Tests.SumTests.Sum2
System.Linq.Tests.SumTests.Sum10
System.Linq.Tests.SumTests.SumOfNullableOfDouble_SourceIsEmptyCollection_ZeroReturned
System.Linq.Tests.SumTests.Sum6
System.Linq.Tests.SumTests.SumOfNullableOfDecimal_SourceIsEmptyCollection_ZeroReturned
System.Linq.Tests.SumTests.SumOfNullableOfInt_SourceIsEmptyCollection_ZeroReturned
System.Linq.Tests.SumTests.SumOfDecimal_SourceIsEmptyCollection_ZeroReturned
System.Linq.Tests.SumTests.SumOfNullableOfLong_SourceIsEmptyCollection_ZeroReturned
System.Linq.Tests.SumTests.Sum14
System.Linq.Tests.QueryableTests.MatchSequencePattern
System.Linq.Tests.OrderByDescendingTests.FirstAndLastAreDuplicatesCustomComparer
System.Linq.Tests.OrderByDescendingTests.OrderByDescending2
System.Linq.Tests.OrderByDescendingTests.KeySelectorCalled
System.Linq.Tests.OrderByDescendingTests.FirstAndLastAreDuplicatesNullPassedAsComparer
System.Linq.Tests.MinTests.EmptyDoubleWithSelector
System.Linq.Tests.MinTests.NullableDecimalMinimumRepeated
System.Linq.Tests.MinTests.DecimalMinimumRepeated
System.Linq.Tests.MinTests.MinNullableSingleWithSelectorAccessingProperty
System.Linq.Tests.MinTests.SingleMinimumRepeated
System.Linq.Tests.MinTests.EmptyInt32WithSelector
System.Linq.Tests.MinTests.MinNullableDecimalWithSelectorAccessingProperty
System.Linq.Tests.MinTests.StringMinimumRepeated
System.Linq.Tests.MinTests.MinNullableDoubleWithSelectorAccessingProperty
System.Linq.Tests.MinTests.EmptyInt64Source
System.Linq.Tests.MinTests.EmptyNullableInt64Source
System.Linq.Tests.MinTests.NullableSingleMinimumRepated
System.Linq.Tests.MinTests.Min2
System.Linq.Tests.MinTests.NullableInt64MinimumRepeated
System.Linq.Tests.MinTests.MinDecimalWithSelectorAccessingProperty
System.Linq.Tests.MinTests.MinNullableInt64WithSelectorAccessingProperty
System.Linq.Tests.MinTests.EmptySingle
System.Linq.Tests.MinTests.EmptyDoubleSource
System.Linq.Tests.MinTests.EmptySingleWithSelector
System.Linq.Tests.MinTests.EmptyInt64WithSelector
System.Linq.Tests.MinTests.MinInt32WithSelectorAccessingProperty
System.Linq.Tests.MinTests.EmptyNullableInt32Source
System.Linq.Tests.MinTests.NullableDoubleMinimumRepeated
System.Linq.Tests.MinTests.MinDoubleWithSelectorAccessingProperty
System.Linq.Tests.MinTests.Int64MinimumRepeated
System.Linq.Tests.MinTests.DoubleMinimumRepeated
System.Linq.Tests.MinTests.EmptyNullableDecimalSource
System.Linq.Tests.MinTests.EmptyBooleanSource
System.Linq.Tests.MinTests.MinInt64WithSelectorAccessingProperty
System.Linq.Tests.MinTests.EmptyNullableDoubleSource
System.Linq.Tests.MinTests.EmptyNullableSingleSource
System.Linq.Tests.MinTests.EmptyDecimalWithSelector
System.Linq.Tests.MinTests.Min1
System.Linq.Tests.MinTests.EmptyDateTimeWithSelector
System.Linq.Tests.MinTests.MinSingleWithSelectorAccessingProperty
System.Linq.Tests.MinTests.EmptyDateTimeSource
System.Linq.Tests.MinTests.NullableInt32MinimumRepeated
System.Linq.Tests.MinTests.EmptyDecimalSource
System.Linq.Tests.MinTests.Int32MinimumRepeated
System.Linq.Tests.MinTests.MinNullableInt32WithSelectorAccessingProperty
System.Linq.Tests.MinTests.MinStringWitSelectorAccessingProperty
System.Linq.Tests.MinTests.EmptyStringSource
System.Linq.Tests.MinTests.EmptyInt32Source
System.Linq.Tests.MaxTests.MaxNullableInt32WithSelectorAccessingField
System.Linq.Tests.MaxTests.MaxNullableDecimalWithSelectorAccessingProperty
System.Linq.Tests.MaxTests.EmptyDouble
System.Linq.Tests.MaxTests.EmptySingleWithSelector
System.Linq.Tests.MaxTests.Int64MaxRepeated
System.Linq.Tests.MaxTests.MaxDoubleWithSelectorAccessingField
System.Linq.Tests.MaxTests.DecimalMaximumRepeated
System.Linq.Tests.MaxTests.EmptyNullableInt64WithSelector
System.Linq.Tests.MaxTests.Max2
System.Linq.Tests.MaxTests.EmptyDecimalWithSelector
System.Linq.Tests.MaxTests.EmptyDecimal
System.Linq.Tests.MaxTests.EmptyInt32
System.Linq.Tests.MaxTests.MaxNullableSingleWithSelectorAccessingProperty
System.Linq.Tests.MaxTests.MaxStringWithSelectorAccessingProperty
System.Linq.Tests.MaxTests.EmptyNullableDecimal
System.Linq.Tests.MaxTests.MaxSingleWithSelectorAccessingProperty
System.Linq.Tests.MaxTests.Single_MaxRepeated
System.Linq.Tests.MaxTests.Int32MaxRepeated
System.Linq.Tests.MaxTests.EmptyDoubleWithSelector
System.Linq.Tests.MaxTests.Max1
System.Linq.Tests.MaxTests.MaxDecimalWithSelectorAccessingProperty
System.Linq.Tests.MaxTests.EmptyNullableInt64
System.Linq.Tests.MaxTests.EmptyNullableDouble
System.Linq.Tests.MaxTests.EmptyNullableInt32
System.Linq.Tests.MaxTests.EmptyString
System.Linq.Tests.MaxTests.StringMaximumRepeated
System.Linq.Tests.MaxTests.EmptyNullableSingleWithSelector
System.Linq.Tests.MaxTests.EmptyNullableSingle
System.Linq.Tests.MaxTests.EmptyInt64WithSelector
System.Linq.Tests.MaxTests.EmptyNullableDoubleWithSelector
System.Linq.Tests.MaxTests.DoubleMaximumRepeated
System.Linq.Tests.MaxTests.NullableSingleMaxRepeated
System.Linq.Tests.MaxTests.MaxInt32WithSelectorAccessingProperty
System.Linq.Tests.MaxTests.MaxNullableDoubleWithSelectorAccessingProperty
System.Linq.Tests.MaxTests.EmptyBoolean
System.Linq.Tests.MaxTests.EmptyNullableDecimalWithSelector
System.Linq.Tests.MaxTests.NullableInt32MaxRepeated
System.Linq.Tests.MaxTests.NullableDecimalMaximumRepeated
System.Linq.Tests.MaxTests.EmptyInt64
System.Linq.Tests.MaxTests.MaxInt64WithSelectorAccessingProperty
System.Linq.Tests.MaxTests.MaxNullableInt64WithSelectorAccessingField
System.Linq.Tests.MaxTests.EmptyDateTime
System.Linq.Tests.MaxTests.EmptyNullableDateTimeWithSelector
System.Linq.Tests.MaxTests.NullableInt64MaximumRepeated
System.Linq.Tests.MaxTests.EmptySingle
System.Linq.Tests.LongCountTests.MultipleElements
System.Linq.Tests.LongCountTests.EmptySourceWithPredicate
System.Linq.Tests.LongCountTests.LongCount1
System.Linq.Tests.LongCountTests.EmptySource
System.Linq.Tests.LongCountTests.LongCount2
System.Linq.Tests.LongCountTests.PredicateTrueFirstAndLast
System.Linq.Tests.JoinTests.Join1
System.Linq.Tests.JoinTests.SelectorsReturnNull
System.Linq.Tests.JoinTests.FirstOuterMatchesLastInnerLastOuterMatchesFirstInnerSameNumberElements
System.Linq.Tests.IntersectTests.BothEmpty
System.Linq.Tests.IntersectTests.Intersect1
System.Linq.Tests.GroupJoinTests.GroupJoin1
System.Linq.Tests.GroupJoinTests.OuterEmptyInnerNonEmpty
System.Linq.Tests.GroupByTests.NullComparer
System.Linq.Tests.GroupByTests.GroupBy5
System.Linq.Tests.GroupByTests.AllElementsSameKeyResultSelectorUsed
System.Linq.Tests.GroupByTests.SingleNonNullElement
System.Linq.Tests.GroupByTests.NullComparerResultSelectorUsed
System.Linq.Tests.GroupByTests.EmptySourceWithResultSelector
System.Linq.Tests.GroupByTests.GroupBy3
System.Linq.Tests.GroupByTests.DuplicateKeysCustomComparer
System.Linq.Tests.GroupByTests.GroupBy6
System.Linq.Tests.GroupByTests.GroupBy1
System.Linq.Tests.GroupByTests.GroupBy7
System.Linq.Tests.GroupByTests.GroupBy8
System.Linq.Tests.DefaultIfEmptyTests.DefaultIfEmpty1
System.Linq.Tests.DefaultIfEmptyTests.EmptyNullableSourceNoDefaultPassed
System.Linq.Tests.DefaultIfEmptyTests.SeveralElementsNoDefaultPassed
System.Linq.Tests.DefaultIfEmptyTests.EmptyNonNullableSourceNoDefaultPassed
System.Linq.Tests.AverageTests.Average9
System.Linq.Tests.AverageTests.Average13
System.Linq.Tests.AverageTests.Average3
System.Linq.Tests.AverageTests.Average10
System.Linq.Tests.AverageTests.MultipleIntSouce
System.Linq.Tests.AverageTests.MultipleDoubleFromSelector
System.Linq.Tests.AverageTests.Average19
System.Linq.Tests.AverageTests.Average2
System.Linq.Tests.AverageTests.MultipleNullableFloatSource
System.Linq.Tests.AverageTests.MultipleNullableDoubleSource
System.Linq.Tests.AverageTests.MultipleDecimalFromSelector
System.Linq.Tests.AverageTests.Average14
System.Linq.Tests.AverageTests.NullableFloatFromSelector
System.Linq.Tests.AverageTests.Average17
System.Linq.Tests.AverageTests.MultipleDoubleValues
System.Linq.Tests.AverageTests.Average1
System.Linq.Tests.AverageTests.Average8
System.Linq.Tests.AverageTests.NullableLongFromSelector
System.Linq.Tests.AverageTests.Average12
System.Linq.Tests.AverageTests.NullableDecimalFromSelector
System.Linq.Tests.AverageTests.Average4
System.Linq.Tests.AverageTests.MultipleIntFromSelector
System.Linq.Tests.AverageTests.Average15
System.Linq.Tests.AverageTests.Average16
System.Linq.Tests.AverageTests.Average6
System.Linq.Tests.AverageTests.MultipleNullableeDecimalSource
System.Linq.Tests.AverageTests.Average7
System.Linq.Tests.AverageTests.MultipleLongValues
System.Linq.Tests.AverageTests.NullableDoubleFromSelector
System.Linq.Tests.AverageTests.Average5
System.Linq.Tests.AverageTests.Average18
System.Linq.Tests.AverageTests.MultipleNullableLongSource
System.Linq.Tests.AverageTests.MultipleFloatValues
System.Linq.Tests.AverageTests.Average11
System.Linq.Tests.AverageTests.MultipleDecimalValues
System.Linq.Tests.AverageTests.MultipleNullableIntSource
System.Linq.Tests.AverageTests.MultipleLongFromSelector
System.Linq.Tests.AverageTests.Average20
System.Linq.Tests.AverageTests.NullableIntFromSelector
System.Linq.Tests.AverageTests.MultipleFloatFromSelector
System.Linq.Tests.AggregateTests.MultipleElementsSeedResultSelector
System.Linq.Tests.AggregateTests.Aggregate3
System.Linq.Expressions.Tests.UnaryPlusNullableTests.CheckUnaryArithmeticUnaryPlusNullableDecimalTest(useInterpreter: True)
System.Linq.Expressions.Tests.UnaryPlusTests.CheckUnaryArithmeticUnaryPlusDecimalTest(useInterpreter: True)
System.Linq.Expressions.Tests.PreIncrementAssignTests.IncorrectMethodParameterCount
System.Linq.Expressions.Tests.PreDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal?), value: -79228162514264337593543950334, result: -79228162514264337593543950335, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal?), value: 79228162514264337593543950334, result: 79228162514264337593543950333, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal), value: 1, result: 0, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal?), value: -1, result: -2, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal), value: -79228162514264337593543950334, result: -79228162514264337593543950335, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal?), value: null, result: null, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal), value: 0, result: -1, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.IncorrectMethodParameterCount
System.Linq.Expressions.Tests.PreDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal), value: 79228162514264337593543950334, result: 79228162514264337593543950333, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal?), value: 1, result: 0, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal?), value: 0, result: -1, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal), value: -1, result: -2, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal), value: 79228162514264337593543950334, result: 79228162514264337593543950333, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal?), value: 0, result: -1, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal?), value: null, result: null, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal?), value: -79228162514264337593543950334, result: -79228162514264337593543950335, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal?), value: 1, result: 0, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal), value: 0, result: -1, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal?), value: 79228162514264337593543950334, result: 79228162514264337593543950333, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal), value: 1, result: 0, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal), value: -1, result: -2, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal?), value: -1, result: -2, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal), value: -79228162514264337593543950334, result: -79228162514264337593543950335, useInterpreter: False)
System.Linq.Expressions.Tests.PostIncrementAssignTests.IncorrectMethodParameterCount
System.Linq.Expressions.Tests.PostDecrementAssignTests.IncorrectMethodParameterCount
System.Linq.Expressions.Tests.PostDecrementAssignTests.OverflowingValuesThrow(value: -79228162514264337593543950335, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal), value: 1, result: 0, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal), value: -1, result: -2, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal?), value: null, result: null, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal?), value: -1, result: -2, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal?), value: -79228162514264337593543950334, result: -79228162514264337593543950335, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal?), value: 79228162514264337593543950334, result: 79228162514264337593543950333, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal?), value: 1, result: 0, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal), value: 79228162514264337593543950334, result: 79228162514264337593543950333, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal), value: -79228162514264337593543950334, result: -79228162514264337593543950335, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal), value: 0, result: -1, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.AssignsCorrectValues(type: typeof(decimal?), value: 0, result: -1, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal?), value: -1, _: -2, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal), value: 79228162514264337593543950334, _: 79228162514264337593543950333, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal), value: -79228162514264337593543950334, _: -79228162514264337593543950335, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal?), value: 79228162514264337593543950334, _: 79228162514264337593543950333, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal?), value: 1, _: 0, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal?), value: 0, _: -1, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal?), value: null, _: null, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal), value: 1, _: 0, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal?), value: -79228162514264337593543950334, _: -79228162514264337593543950335, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal), value: -1, _: -2, useInterpreter: False)
System.Linq.Expressions.Tests.PostDecrementAssignTests.ReturnsCorrectValues(type: typeof(decimal), value: 0, _: -1, useInterpreter: False)
System.Linq.Expressions.Tests.PreDecrementAssignTests.OverflowingValuesThrow(value: -79228162514264337593543950335, useInterpreter: False)
# typeof(Microsoft.CSharp.RuntimeBinder.RuntimeBinderException): Cannot apply indexing with [] to an expression of type 'System.Collections.Generic.List<int>'
System.Dynamic.Tests.SetIndexBinderTests.IndexErrorIsNotBindingError
System.Dynamic.Tests.SetIndexBinderTests.ListIndexing
System.Dynamic.Tests.GetIndexBinderTests.IndexErrorIsNotBindingError
System.Dynamic.Tests.GetIndexBinderTests.ListIndexing
# fail only on 32b devices, to be finxed in mono: https://github.com/mono/mono/issues/15262
Platform32:System.Linq.Expressions.Tests.NewArrayListTests.CheckShortArrayListTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.NewArrayListTests.CheckSByteArrayListTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.BinaryAddTests.CheckShortAddTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.BinaryDivideTests.CheckShortDivideTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.BinaryMultiplyTests.CheckShortMultiplyTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.BinaryPowerTests.CheckSBytePowerTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.BinaryPowerTests.CheckShortPowerTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.BinaryShiftTests.CheckSByteShiftTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.BinaryShiftTests.CheckShortShiftTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.BinarySubtractTests.CheckShortSubtractTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.BinaryAndTests.CheckShortAndTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.BinaryAndTests.CheckSByteAndTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.BinaryExclusiveOrTests.CheckShortExclusiveOrTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.BinaryExclusiveOrTests.CheckSByteExclusiveOrTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.BinaryOrTests.CheckSByteOrTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.BinaryOrTests.CheckShortOrTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConstantTests.CheckShortConstantTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConstantTests.CheckSByteConstantTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableFloatToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertIntToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertShortToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableByteToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertSByteToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertIntToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableLongToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertEnumLongToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableCharToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertFloatToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertDecimalToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableIntToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableUShortToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableDoubleToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableULongToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertShortToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableULongToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertFloatToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableSByteToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableShortToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableDoubleToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertLongToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertCharToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableUIntToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertEnumToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableUShortToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertCharToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertEnumToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableEnumToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableSByteToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertDecimalToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertULongToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertDoubleToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableCharToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableUIntToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableIntToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableEnumLongToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableShortToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableFloatToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableEnumToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertSByteToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertUShortToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertLongToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertULongToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertByteToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertUIntToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertDoubleToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableDecimalToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertUIntToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableEnumLongToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableLongToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertNullableDecimalToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertUShortToSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.ConvertTests.ConvertEnumLongToShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.LambdaAddTests.LambdaAddShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.LambdaDivideTests.LambdaDivideShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.LambdaIdentityTests.CheckLambdaIdentitySByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.LambdaIdentityTests.CheckLambdaIdentityShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.LambdaModuloTests.LambdaModuloShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.LambdaMultiplyTests.LambdaMultiplyShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.LambdaSubtractTests.LambdaSubtractShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.LambdaUnaryNotTests.CheckLambdaUnaryNotShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.LambdaUnaryNotTests.CheckLambdaUnaryNotSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.Compiler_Tests.ConvertUnsignedToSigned(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.TernaryTests.CheckTernarySByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.TernaryTests.CheckTernaryShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.UnaryArithmeticNegateTests.CheckUnaryArithmeticNegateShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.UnaryBitwiseNotTests.CheckUnaryBitwiseNotSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.UnaryBitwiseNotTests.CheckUnaryBitwiseNotShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.UnaryDecrementTests.CheckUnaryDecrementShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.UnaryIncrementTests.CheckUnaryIncrementShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.OnesComplementTests.CheckUnaryArithmeticOnesComplementShortTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.OnesComplementTests.CheckUnaryArithmeticOnesComplementSByteTest(useInterpreter: True)
Platform32:System.Linq.Expressions.Tests.UnaryPlusTests.CheckUnaryArithmeticUnaryPlusShortTest(useInterpreter: True)
# ignore failing test, mono issue: https://github.com/mono/mono/issues/19308
System.Linq.Expressions.Tests.BinaryPowerTests.CheckDecimalPowerTest(useInterpreter: True)

Просмотреть файл

@ -1,3 +0,0 @@
# System.NotSupportedException : Encoding 1252 data could not be found. Make sure you have correct international codeset assembly installed and enabled.
MonoTests.System.Data.SqlTypes.SqlStringTest.UnicodeBytes
MonoTests.System.Data.SqlTypes.SqlStringTest.Create

Просмотреть файл

@ -1,62 +0,0 @@
# #1
# Expected: instance of <System.Net.Http.HttpRequestException>
# But was: <System.Net.WebException>
MonoTests.System.Net.Http.HttpClientTest.WildcardConnect
MonoTests.System.Net.Http.HttpClientTest.Send_Transfer_Encoding_Custom
# #102
# Expected: False
# But was: True
MonoTests.System.Net.Http.HttpClientTest.Send_Transfer_Encoding_Chunked
# #2
# Expected: True
# But was: False
MonoTests.System.Net.Http.HttpClientTest.Send_Content_Put_CustomStream
# #102
# Expected: False
# But was: True
MonoTests.System.Net.Http.HttpClientTest.Send_Complete_Version_1_0
# #102
# Expected: False
# But was: True
MonoTests.System.Net.Http.HttpClientTest.Send_Complete_NoContent_Put
# #102
# Expected: False
# But was: True
MonoTests.System.Net.Http.HttpClientTest.Send_Complete_NoContent_Post
# #102
# Expected: False
# But was: True
MonoTests.System.Net.Http.HttpClientTest.Send_Complete_NoContent_Delete
# #102
# Expected: False
# But was: True
MonoTests.System.Net.Http.HttpClientTest.Send_Complete_Default
# #103a
# Expected string length 7 but was 8. Strings differ at index 0.
# Expected: "chunked"
# But was: "Identity"
MonoTests.System.Net.Http.HttpClientTest.Send_Complete_CustomHeaders
# #102a
# Expected string length 7 but was 8. Strings differ at index 0.
# Expected: "chunked"
# But was: "Identity"
MonoTests.System.Net.Http.HttpClientTest.Send_Complete_Content
# #102
# Expected: False
# But was: True
MonoTests.System.Net.Http.HttpClientTest.Post_TransferEncodingChunked
# #102
# Expected: False
# But was: True
MonoTests.System.Net.Http.HttpClientTest.Post_StreamCaching

Просмотреть файл

@ -1,82 +0,0 @@
## DEVICE FAILURES
# tracked by https://github.com/mono/mono/issues/15536
System.Numerics.Tests.GenericVectorTests.GreaterThanAllSingle
System.Numerics.Tests.GenericVectorTests.ConditionalSelectSingle
System.Numerics.Tests.GenericVectorTests.LessThanAllSingle
System.Numerics.Tests.GenericVectorTests.GreaterThanOrEqualAllSingle
System.Numerics.Tests.GenericVectorTests.LessThanOrEqualAllSingle
# tests that are ignored in 32 b because they are expecting larger words, to be fixed by mono: https://github.com/mono/mono/issues/15261
Platform32:System.Numerics.Tests.GenericVectorTests.DivisionSByte
Platform32:System.Numerics.Tests.GenericVectorTests.CopyToWithOffsetReflectionInt16
Platform32:System.Numerics.Tests.GenericVectorTests.ConstructorConstantValueSByte
Platform32:System.Numerics.Tests.GenericVectorTests.ConstructorWithOffsetSByte
Platform32:System.Numerics.Tests.GenericVectorTests.CopyToReflectionSByte
Platform32:System.Numerics.Tests.GenericVectorTests.SubtractionInt16
Platform32:System.Numerics.Tests.GenericVectorTests.DivisionInt16
Platform32:System.Numerics.Tests.GenericVectorTests.MinSByte
Platform32:System.Numerics.Tests.GenericVectorTests.BitwiseXorOperatorSByte
Platform32:System.Numerics.Tests.GenericVectorTests.ConstructorConstantValueInt16
Platform32:System.Numerics.Tests.GenericVectorTests.SubtractionOverflowInt16
Platform32:System.Numerics.Tests.GenericVectorTests.CopyToWithOffsetInt16
Platform32:System.Numerics.Tests.GenericVectorTests.AdditionSByte
Platform32:System.Numerics.Tests.GenericVectorTests.ConditionalSelectInt16
Platform32:System.Numerics.Tests.GenericVectorTests.MultiplicationWithScalarInt16
Platform32:System.Numerics.Tests.GenericVectorTests.MaxSByte
Platform32:System.Numerics.Tests.GenericVectorTests.ConstructorSByte
Platform32:System.Numerics.Tests.GenericVectorTests.MultiplicationReflectionInt16
Platform32:System.Numerics.Tests.GenericVectorTests.CopyToInt16
Platform32:System.Numerics.Tests.GenericVectorTests.VectorGreaterThanSByte
Platform32:System.Numerics.Tests.GenericVectorTests.BitwiseAndNotSByte
Platform32:System.Numerics.Tests.GenericVectorTests.DivisionReflectionInt16
Platform32:System.Numerics.Tests.GenericVectorTests.CopyToWithOffsetReflectionSByte
Platform32:System.Numerics.Tests.GenericVectorTests.ConstructorArrayReflectionSByte
Platform32:System.Numerics.Tests.GenericVectorTests.MultiplicationReflectionSByte
Platform32:System.Numerics.Tests.GenericVectorTests.MultiplicationInt16
Platform32:System.Numerics.Tests.GenericVectorTests.ConstructorWithOffsetInt16
Platform32:System.Numerics.Tests.GenericVectorTests.MaxInt16
Platform32:System.Numerics.Tests.GenericVectorTests.BitwiseOnesComplementOperatorSByte
Platform32:System.Numerics.Tests.GenericVectorTests.WidenSByte
Platform32:System.Numerics.Tests.GenericVectorTests.AdditionReflectionSByte
Platform32:System.Numerics.Tests.GenericVectorTests.VectorEqualsInt16
Platform32:System.Numerics.Tests.GenericVectorTests.AdditionReflectionInt16
Platform32:System.Numerics.Tests.GenericVectorTests.CopyToWithOffsetSByte
Platform32:System.Numerics.Tests.GenericVectorTests.SubtractionOverflowSByte
Platform32:System.Numerics.Tests.GenericVectorTests.DivisionReflectionSByte
Platform32:System.Numerics.Tests.GenericVectorTests.CopyToReflectionInt16
Platform32:System.Numerics.Tests.GenericVectorTests.UnaryMinusInt16
Platform32:System.Numerics.Tests.GenericVectorTests.LessThanInt16
Platform32:System.Numerics.Tests.GenericVectorTests.ConstructorArrayReflectionInt16
Platform32:System.Numerics.Tests.GenericVectorTests.GreaterThanOrEqualInt16
Platform32:System.Numerics.Tests.GenericVectorTests.MultiplicationWithScalarSByte
Platform32:System.Numerics.Tests.GenericVectorTests.SubtractionSByte
Platform32:System.Numerics.Tests.GenericVectorTests.MinInt16
Platform32:System.Numerics.Tests.GenericVectorTests.VectorEqualsSByte
Platform32:System.Numerics.Tests.GenericVectorTests.BitwiseXorOperatorInt16
Platform32:System.Numerics.Tests.GenericVectorTests.UnaryMinusSByte
Platform32:System.Numerics.Tests.GenericVectorTests.LessThanOrEqualSByte
Platform32:System.Numerics.Tests.GenericVectorTests.LessThanSByte
Platform32:System.Numerics.Tests.GenericVectorTests.NarrowInt32
Platform32:System.Numerics.Tests.GenericVectorTests.AdditionInt16
Platform32:System.Numerics.Tests.GenericVectorTests.ConditionalSelectSByte
Platform32:System.Numerics.Tests.GenericVectorTests.CopyToSByte
Platform32:System.Numerics.Tests.GenericVectorTests.AdditionOverflowSByte
Platform32:System.Numerics.Tests.GenericVectorTests.ConstructorInt16
Platform32:System.Numerics.Tests.GenericVectorTests.MultiplicationSByte
Platform32:System.Numerics.Tests.GenericVectorTests.GreaterThanOrEqualSByte
Platform32:System.Numerics.Tests.GenericVectorTests.NarrowInt16
Platform32:System.Numerics.Tests.GenericVectorTests.VectorGreaterThanInt16
Platform32:System.Numerics.Tests.GenericVectorTests.BitwiseAndNotInt16
Platform32:System.Numerics.Tests.GenericVectorTests.AdditionOverflowInt16
Platform32:System.Numerics.Tests.GenericVectorTests.LessThanOrEqualInt16
Platform32:System.Numerics.Tests.GenericVectorTests.BitwiseOnesComplementOperatorInt16
Platform32:System.Numerics.Tests.cast_toTest.RunSByteImplicitCastToBigIntegerTests
Platform32:System.Numerics.Tests.cast_toTest.RunInt16ImplicitCastToBigIntegerTests
Platform32:System.Numerics.Tests.cast_fromTest.RunInt16ExplicitCastFromBigIntegerTests
Platform32:System.Numerics.Tests.cast_fromTest.RunSByteExplicitCastFromBigIntegerTests
Platform32:System.Numerics.Tests.GenericVectorTests.DotProductSByte
# 32bits device failures / https://github.com/mono/mono/issues/18542
Platform32:System.Numerics.Tests.Matrix4x4Tests.Matrix4x4InvertTest1
Platform32:System.Numerics.Tests.Matrix3x2Tests.Matrix3x2InvertTest1

Просмотреть файл

@ -1,6 +0,0 @@
# blocks the testing app
System.Net.WebSockets.Tests.WebSocketTests.CreateClientBuffer_InvalidSendValues(size: -1)
System.Net.WebSockets.Tests.WebSocketTests.CreateClientBuffer_InvalidSendValues(size: 0)
System.Net.WebSockets.Tests.WebSocketTests.WebSocketProtocol_CreateFromConnectedStream_CanSendReceiveData
System.Net.WebSockets.Tests.WebSocketTests.ReceiveAsync_ServerSplitHeader_ValidDataReceived

Просмотреть файл

@ -1,24 +0,0 @@
# DEVICE FAILURES
# System.NotSupportedException : Linked Away
MonoTests.System.Runtime.Remoting.Channels.ChannelServicesTest.ConstructorEnsureSecurity
MonoTests.System.Runtime.Remoting.Channels.ChannelServicesTest.ConstructorEnsureSecurity2
MonoTests.System.Runtime.Remoting.Contexts.SynchronizationAttributeTest.Constructor_Bool
MonoTests.System.Runtime.Remoting.Contexts.SynchronizationAttributeTest.Constructor_Default
MonoTests.System.Runtime.Remoting.Contexts.SynchronizationAttributeTest.Constructor_Int
MonoTests.System.Runtime.Remoting.Contexts.SynchronizationAttributeTest.Constructor_IntBool
MonoTests.System.Runtime.Remoting.Contexts.SynchronizationAttributeTest.DeserializeKnownValue
MonoTests.System.Runtime.Remoting.Contexts.SynchronizationAttributeTest.SerializationRoundtrip
MonoTests.System.Runtime.Remoting.Contexts.SynchronizationAttributeTest.SetLocked
MonoTests.System.Runtime.Remoting.Messaging.CallContextTest.CallContextPropagation_Not_ThreadPool
MonoTests.System.Runtime.Remoting.Messaging.CallContextTest.CallContextPropagation_Task
MonoTests.System.Runtime.Remoting.Messaging.CallContextTest.CallContextPropagation_TaskContinuation
MonoTests.System.Runtime.Remoting.Messaging.CallContextTest.CallContextPropagation_Thread
MonoTests.System.Runtime.Remoting.Messaging.CallContextTest.CallContextPropagation_ThreadPool
MonoTests.System.Runtime.Remoting.Messaging.CallContextTest.FreeNamedDataSlot_ShouldClearBothLogicalAndIllogicalData
MonoTests.System.Runtime.Remoting.Messaging.CallContextTest.FreeNamedDataSlot_ShouldClearIllogicalData
MonoTests.System.Runtime.Remoting.Messaging.CallContextTest.FreeNamedDataSlot_ShouldClearLogicalData
MonoTests.System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinaryTest.Parse_Value_Invalid
# https://github.com/xamarin/maccore/issues/2629
MonoTests.System.TimeZoneInfoTest+IsDaylightSavingTimeTests.Bug_16395

Просмотреть файл

@ -1,440 +0,0 @@
# blocks the application
TaskCoverage.Coverage.TaskWait_MaxInt32
TaskCoverage.Coverage.TaskContinuation
TaskCoverage.Coverage.TaskWaitWithCTS
TaskCoverage.Coverage.TaskWaitAny_WhenAny
TaskCoverage.Coverage.CancellationTokenRegitration
TaskCoverage.Coverage.TaskAwaiter
TaskCoverage.Coverage.TaskConfigurableAwaiter
TaskCoverage.Coverage.FromAsync
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest0_Cto
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest0_Ctor_Negative
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest1_Wait
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest1_Wait_NegativeCases
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest1_WaitAsync
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest1_WaitAsync_NegativeCases
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest2_Release
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest2_Release_NegativeCases
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest4_Dispose
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest5_CurrentCount
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest7_AvailableWaitHandle
# System.PlatformNotSupportedException : Operation is not supported on this platform.
System.Reflection.Emit.Tests.GenericTypeParameterBuilderMakePointerType.MakePointerType
System.Reflection.Emit.Tests.EventBuilderSetAddOnMethod.SetAddOnMethod_InstanceMethod_Twice
System.Reflection.Emit.Tests.EventBuilderSetAddOnMethod.SetAddOnMethod_PInvokeImplMethod_Twice
System.Reflection.Emit.Tests.EventBuilderSetAddOnMethod.SetAddOnMethod_TypeCreated_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.EventBuilderSetAddOnMethod.SetAddOnMethod_AbstractMethod_Twice
System.Reflection.Emit.Tests.EventBuilderSetAddOnMethod.SetAddOnMethod_StaticMethod_Twice
System.Reflection.Emit.Tests.EventBuilderSetAddOnMethod.SetAddOnMethod_MultipleDifferentMethods
System.Reflection.Emit.Tests.EventBuilderSetAddOnMethod.SetAddOnMethod_NullMethod_ThrowsArgumentNullException
System.Reflection.Emit.Tests.ConstructorBuilderSetCustomAttribute.SetCustomAttribute_CustomAttributeBuilder
System.Reflection.Emit.Tests.ConstructorBuilderSetCustomAttribute.SetCustomAttribute_ConstructorBuilder_ByteArray
System.Reflection.Emit.Tests.ConstructorBuilderSetCustomAttribute.SetCustomAttribute_ConstructorBuilder_ByteArray_NullConstructorBuilder_ThrowsArgumentNullException
System.Reflection.Emit.Tests.ConstructorBuilderSetCustomAttribute.SetCustomAttribute_NullCustomAttributeBuilder_ThrowsArgumentNullException
System.Reflection.Emit.Tests.ConstructorBuilderSetCustomAttribute.IsDefined_ThrowsNotSupportedException
System.Reflection.Emit.Tests.ConstructorBuilderSetCustomAttribute.GetCustomAttributes_ThrowsNotSupportedException
System.Reflection.Emit.Tests.TypeBuilderGetElementType.GetElementType_ThrowsNotSupportedException
System.Reflection.Emit.Tests.TypeBuilderIsGenericType.IsGenericType_NonGenericType_ReturnsTrye
System.Reflection.Emit.Tests.MethodBuilderInitLocals.InitLocals_Get_ReturnsTrue
System.Reflection.Emit.Tests.MethodBuilderSetCustomAttribute.SetCustomAttribute_ConstructorInfo_ByteArray_NullConstructor_ThrowsArgumentNullException
System.Reflection.Emit.Tests.MethodBuilderSetCustomAttribute.SetCustomAttribute_ConstructorInfo_ByteArray
System.Reflection.Emit.Tests.MethodBuilderSetCustomAttribute.SetCustomAttribute_CustomAttributeBuilder
System.Reflection.Emit.Tests.MethodBuilderSetCustomAttribute.SetCustomAttribute_ConstructorInfo_ByteArray_NullBinaryAttribute_ThrowsArgumentNullException
System.Reflection.Emit.Tests.MethodBuilderSetCustomAttribute.SetCustomAttribute_CustomAttributeBuilder_NullBuilder_ThrowsArgumentNullException
System.Reflection.Emit.Tests.EventBuilderSetCustomAttribute.SetCustomAttribute_ConstructorInfo_ByteArray_NullByteArray_ThrowsArgumentNullException
System.Reflection.Emit.Tests.EventBuilderSetCustomAttribute.SetCustomAttribute_ConstructorInfo_ByteArray_TypeCreated_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.EventBuilderSetCustomAttribute.SetCustomAttribute_CustomAttributeBuilder
System.Reflection.Emit.Tests.EventBuilderSetCustomAttribute.SetCustomAttribute_ConstructorInfo_ByteArray_NullConstructorInfo_ThrowsArgumentNullException
System.Reflection.Emit.Tests.EventBuilderSetCustomAttribute.SetCustomAttribute_CustomAttributeBuilder_NullBuilder_ThrowsArgumentNullException
System.Reflection.Emit.Tests.EventBuilderSetCustomAttribute.SetCustomAttribute_ConstructorInfo_ByteArray
System.Reflection.Emit.Tests.EventBuilderSetCustomAttribute.SetCustomAttribute_CustomAttributeBuilder_TypeCreated_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.PropertyBuilderTest6.DeclaringType_NestedClass
System.Reflection.Emit.Tests.PropertyBuilderTest6.DeclaringType_RootInterface
System.Reflection.Emit.Tests.PropertyBuilderTest6.DeclaringType_DerivedClass
System.Reflection.Emit.Tests.PropertyBuilderTest6.DeclaringType_BaseClass
System.Reflection.Emit.Tests.PropertyBuilderTest6.DeclaringType_RootClass
System.Reflection.Emit.Tests.FieldBuilderSetCustomAttribute.SetCustomAttribute_ConstructorInfo_ByteArray_NullConstructorInfo_ThrowsArgumentNullException
System.Reflection.Emit.Tests.FieldBuilderSetCustomAttribute.SetCustomAttribute_CustomAttributeBuilder_NullBuilder_ThrowsArgumentNullException
System.Reflection.Emit.Tests.FieldBuilderSetCustomAttribute.SetCustomAttribute_CustomAttributeBuilder_TypeCreated_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.FieldBuilderSetCustomAttribute.SetCustomAttribute_ConstructorInfo_ByteArray_TypeCreated_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.FieldBuilderSetCustomAttribute.SetCustomAttribute_ConstructorInfo_ByteArray
System.Reflection.Emit.Tests.FieldBuilderSetCustomAttribute.SetCustomAttribute_CustomAttributeBuilder
System.Reflection.Emit.Tests.FieldBuilderSetCustomAttribute.SetCustomAttribute_ConstructorInfo_ByteArray_NullByteArray_ThrowsArgumentNullException
System.Reflection.Emit.Tests.ModuleBuilderDefineInitializedData.DefineInitializedData_NullData_ThrowsArgumentNullException
System.Reflection.Emit.Tests.ModuleBuilderDefineInitializedData.DefineInitializedData_InvalidDataLength_ThrowsArgumentException
System.Reflection.Emit.Tests.ModuleBuilderDefineInitializedData.DefineInitializedData_CreateGlobalFunctionsCalled_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.ModuleBuilderDefineInitializedData.DefineInitializedData_EmptyName_ThrowsArgumentException
System.Reflection.Emit.Tests.ModuleBuilderDefineInitializedData.TestWithStaticAndPublic
System.Reflection.Emit.Tests.ModuleBuilderDefineInitializedData.DefineInitializedData_NullName_ThrowsArgumentNullException
System.Reflection.Emit.Tests.ConstructorBuilderDefineParameter.DefineParameter_SingleParameter_NullParameterName
System.Reflection.Emit.Tests.ConstructorBuilderDefineParameter.DefineParameter_ZeroSequence_NoParameters
System.Reflection.Emit.Tests.ConstructorBuilderDefineParameter.DefineParameter_SingleParameter
System.Reflection.Emit.Tests.ConstructorBuilderDefineParameter.DefineParameter_ZeroSequence_SingleParameter
System.Reflection.Emit.Tests.ConstructorBuilderDefineParameter.DefineParameter_NoParameters_InvalidSequence_ThrowsArgumentOutOfRangeException
System.Reflection.Emit.Tests.ConstructorBuilderDefineParameter.DefineParameter_SingleParameter_InvalidSequence_ThrowsArgumentOutOfRangeException
System.Reflection.Emit.Tests.ConstructorBuilderDefineParameter.DefineParameter_MultipleParameters_NullParameterNames
System.Reflection.Emit.Tests.ConstructorBuilderDefineParameter.DefineParameter_TypeAlreadyCreated_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.ConstructorBuilderDefineParameter.DefineParameter_MultipleParameters
System.Reflection.Emit.Tests.MethodBuilderSetImplementationFlags.SetImplementationFlags
System.Reflection.Emit.Tests.GenericTypeParameterBuilderMakeGenericType.MakeGenericType_TwoTypeArguments_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.GenericTypeParameterBuilderMakeGenericType.MakeGenericType_NullTypeArguments_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.GenericTypeParameterBuilderMakeGenericType.MakeGenericType_SingleTypeArgument_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.PropertyBuilderTest7.GetIndexParameters_ThrowsNotSupportedException
System.Reflection.Emit.Tests.PropertyBuilderTest5.CanWrite_OnlyGetAccessor_ReturnsFalse
System.Reflection.Emit.Tests.PropertyBuilderTest5.CanWrite_NoAccessors_ReturnsFalse
System.Reflection.Emit.Tests.PropertyBuilderTest5.CanWrite_OnlySetAccessor_ReturnsFalse
System.Reflection.Emit.Tests.PropertyBuilderTest5.CanWrite_PublicStaticSetAccessor_ReturnsTrue
System.Reflection.Emit.Tests.PropertyBuilderTest3.ExecutePosTest(attributes
System.Reflection.Emit.Tests.FieldBuilderGetValue.GetValue_ThrowsNotSupportedException
System.Reflection.Emit.Tests.GenericTypeParameterBuilderSetBaseTypeConstraint.SetBaseTypeConstraint
System.Reflection.Emit.Tests.TypeBuilderToString.ToString
System.Reflection.Emit.Tests.TypeBuilderAssemblyQualifiedName.AssemblyQualifiedName
System.Reflection.Emit.Tests.TypeBuilderMakeByRefType.MakeByRefType
System.Reflection.Emit.Tests.TypeBuilderMakePointerType.MakePointerType
System.Reflection.Emit.Tests.GenericTypeParameterBuilderSetCustomAttribute.SetCustomAttribute_ConstructorInfo_ByteArray_NullBinaryAttribute_ThrowsArgumentNullException
System.Reflection.Emit.Tests.GenericTypeParameterBuilderSetCustomAttribute.SetCustomAttribute_ConstructorInfo_ByteArray_NullAttributeConstructor_ThrowsArgumentNullException
System.Reflection.Emit.Tests.GenericTypeParameterBuilderSetCustomAttribute.SetCustomAttribute_ConstructorInfo_ByteArray
System.Reflection.Emit.Tests.GenericTypeParameterBuilderSetCustomAttribute.SetCustomAttribute_CustomAttributeBuilder
System.Reflection.Emit.Tests.GenericTypeParameterBuilderSetCustomAttribute.SetCustomAttribute_CustomAttributeBuilder_NullAttributeBuilder_ThrowsArgumentNullException
System.Reflection.Emit.Tests.TypeBuilderIsGenericParameter.IsGenericParameter_NonGenericType_ReturnsFalse
System.Reflection.Emit.Tests.GenericTypeParameterBuilderGUID.Guid_ThrowsNotSupportedException
System.Reflection.Emit.Tests.EventBuilderSetRemoveOnMethod.SetRemoveOnMethod_NullMethod_ThrowsArgumentNullException
System.Reflection.Emit.Tests.EventBuilderSetRemoveOnMethod.SetRemoveOnMethod_AbstractMethod_Twice
System.Reflection.Emit.Tests.EventBuilderSetRemoveOnMethod.SetRemoveOnMethod_MultipleDifferentMethods
System.Reflection.Emit.Tests.EventBuilderSetRemoveOnMethod.SetRemoveOnMethod_StaticMethod_Twice
System.Reflection.Emit.Tests.EventBuilderSetRemoveOnMethod.SetRemoveOnMethod_PInvokeImplMethod_Twice
System.Reflection.Emit.Tests.EventBuilderSetRemoveOnMethod.SetRemoveOnMethod_InstanceMethod_Twice
System.Reflection.Emit.Tests.EventBuilderSetRemoveOnMethod.SetRemoveOnMethod_TypeCreated_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.EventBuilderAddOtherMethod.AddOtherMethod_TypeCreated_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.EventBuilderAddOtherMethod.AddOtherMethod_StaticMethod_Twice
System.Reflection.Emit.Tests.EventBuilderAddOtherMethod.AddOtherMethod_InstanceMethod_Twice
System.Reflection.Emit.Tests.EventBuilderAddOtherMethod.AddOtherMethod_NullMethod_ThrowsArgumentNullException
System.Reflection.Emit.Tests.EventBuilderAddOtherMethod.AddOtherMethod_MultipleDifferentMethods
System.Reflection.Emit.Tests.EventBuilderAddOtherMethod.AddOtherMethod_PInvokeImpl_Twice
System.Reflection.Emit.Tests.EventBuilderAddOtherMethod.AddOtherMethod_AbstractVirtualMethod_Twice
System.Reflection.Emit.Tests.ConstructorBuilderInitLocals.InitLocals
System.Reflection.Emit.Tests.ModuleBuilderCreateGlobalFunctions.CreateGlobalFunctions_CalledMultipleTimes_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.ModuleBuilderCreateGlobalFunctions.CreateGlobalFunctions_MultipleGlobalMethods
System.Reflection.Emit.Tests.ModuleBuilderCreateGlobalFunctions.CreateGlobalFunctions_SingleGlobalMethod
System.Reflection.Emit.Tests.EventBuilderSetRaiseMethod.SetRaiseMethod_NullMethod_ThrowsArgumentNullException
System.Reflection.Emit.Tests.EventBuilderSetRaiseMethod.SetRaiseMethod_InstanceMethod_Twice
System.Reflection.Emit.Tests.EventBuilderSetRaiseMethod.SetRaiseMethod_AbstractMethod_Twice
System.Reflection.Emit.Tests.EventBuilderSetRaiseMethod.SetRaiseMethod_PInvokeImplMethod_Twice
System.Reflection.Emit.Tests.EventBuilderSetRaiseMethod.SetRaiseMethod_MultipleDifferentMethods
System.Reflection.Emit.Tests.EventBuilderSetRaiseMethod.SetRaiseMethod_TypeCreated_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.EventBuilderSetRaiseMethod.SetRaiseMethod_StaticMethod_Twice
System.Reflection.Emit.Tests.MethodBuilderDefineParameter.DefineParameter_TwoParameters
System.Reflection.Emit.Tests.MethodBuilderDefineParameter.DefineParameter_NoParameters_NonZeroPosition_ThrowsArgumentOutOfRangeException
System.Reflection.Emit.Tests.MethodBuilderDefineParameter.DefineParameter_InvalidPosition_ThrowsArgumentOutOfRangeException
System.Reflection.Emit.Tests.MethodBuilderDefineParameter.DefineParameter_AllAttributes
System.Reflection.Emit.Tests.MethodBuilderDefineParameter.DefineParameter_HasDefaultAttribute
System.Reflection.Emit.Tests.MethodBuilderDefineParameter.DefineParameter_NegativeAttribute
System.Reflection.Emit.Tests.MethodBuilderDefineParameter.DefineParameter_AllAttributesCombined
System.Reflection.Emit.Tests.MethodBuilderDefineParameter.DefineParameter_SingleParameter_TypeAlreadyCreated_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.MethodBuilderDefineParameter.DefineParameter_TypeAlreadyCreated_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.TypeBuilderSetCustomAttribute.SetCustomAttribute_CustomAttributeBuilder
System.Reflection.Emit.Tests.FieldBuilderSetOffset.SetOffset_DifferentForTwoProperties
System.Reflection.Emit.Tests.FieldBuilderSetOffset.SetOffset_SameForTwoProperties
System.Reflection.Emit.Tests.FieldBuilderSetOffset.SetOffset_NegativeOffset_ThrowsArgumentException
System.Reflection.Emit.Tests.FieldBuilderSetOffset.SetOffset_TypeCreated_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.TypeBuilderSetCustomAttribute.SetCustomAttribute
System.Reflection.Emit.Tests.TypeBuilderSetCustomAttribute.SetCustomAttribute_CustomAttributeBuilder_NullBuilder_ThrowsArgumentNullException
System.Reflection.Emit.Tests.PropertyBuilderTest.CanRead_NoAccessors_ReturnsFalse
System.Reflection.Emit.Tests.PropertyBuilderTest.CanRead_PublicStaticGetAccessor_ReturnsTrue
System.Reflection.Emit.Tests.PropertyBuilderTest.CanRead_OnlyGetAccessor_ReturnsFalse
System.Reflection.Emit.Tests.PropertyBuilderTest.CanRead_OnlyGetAccessor_ReturnsTrue
System.Reflection.Emit.Tests.GenericTypeParameterBuilderSetBaseTypeConstraint.SetBaseTypeConstraint(baseTypeConstraint: null, expectedBaseType: typeof(object))
System.Reflection.Emit.Tests.GenericTypeParameterBuilderSetBaseTypeConstraint.SetBaseTypeConstraint(baseTypeConstraint: typeof(string), expectedBaseType: typeof(string))
System.Reflection.Emit.Tests.FieldBuilderSetOffset.SetOffset(offset: 0)
System.Reflection.Emit.Tests.FieldBuilderSetOffset.SetOffset(offset: 1)
System.Reflection.Emit.Tests.FieldBuilderSetOffset.SetOffset(offset: 8)
System.Reflection.Emit.Tests.MethodBuilderInitLocals.InitLocals_Set(newInitLocals: True)
System.Reflection.Emit.Tests.MethodBuilderInitLocals.InitLocals_Set(newInitLocals: False)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: FamANDAssem)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: HasFieldMarshal)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: Static)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: Public)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: Private)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: HasDefault)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: Family)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: FamORAssem)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: Literal)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: HasFieldRVA)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: PrivateScope)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: FieldAccessMask)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: RTSpecialName)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: NotSerialized)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: Assembly)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: InitOnly)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: SpecialName)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_InvalidSize_ThrowsArgumentException(attributes: PinvokeImpl)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: HasFieldRVA)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: Assembly)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: FamORAssem)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: NotSerialized)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: Private)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: FamANDAssem)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: Static)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: Literal)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: PinvokeImpl)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: InitOnly)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: SpecialName)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: RTSpecialName)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: HasDefault)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: Public)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: PrivateScope)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: Family)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: FieldAccessMask)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_NullName_ThrowsArgumentNullException(attributes: HasFieldMarshal)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: Family)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: NotSerialized)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: FieldAccessMask)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: FamORAssem)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: SpecialName)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: HasFieldMarshal)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: Private)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: RTSpecialName)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: Static)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: PinvokeImpl)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: FamANDAssem)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: Literal)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: HasDefault)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: HasFieldRVA)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: Assembly)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: InitOnly)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: Public)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUninitalizedData_CreateGlobalFunctionsAlreadyCalled_ThrowsInvalidOperationException(attributes: PrivateScope)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: InitOnly)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: FamANDAssem)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: NotSerialized)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: HasFieldRVA)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: PinvokeImpl)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: Public)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: Assembly)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: RTSpecialName)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: Static)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: PrivateScope)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: SpecialName)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: Private)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: HasFieldMarshal)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: Family)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: HasDefault)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: FamORAssem)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: FieldAccessMask)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData(attributes: Literal)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: Literal)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: Static)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: FamANDAssem)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: HasFieldRVA)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: Family)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: FamORAssem)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: Private)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: NotSerialized)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: FieldAccessMask)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: PrivateScope)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: HasDefault)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: Public)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: InitOnly)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: RTSpecialName)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: PinvokeImpl)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: SpecialName)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: HasFieldMarshal)
System.Reflection.Emit.Tests.ModuleBuilderDefineUninitializedData.DefineUnitializedData_EmptyName_ThrowsArgumentException(attributes: Assembly)
System.Reflection.Emit.Tests.GenericTypeParameterBuilderMakeByRefType.MakeByRefType
System.Reflection.Emit.Tests.TypeBuilderMakeByRefType.MakeByRefType(attributes: NotPublic)
System.Reflection.Emit.Tests.TypeBuilderMakeByRefType.MakeByRefType(attributes: AutoLayout | AnsiClass | Class | Public | Abstract)
System.Reflection.Emit.Tests.TypeBuilderMakePointerType.MakePointerType(attributes: AutoLayout | AnsiClass | Class | Public | Abstract)
System.Reflection.Emit.Tests.TypeBuilderMakePointerType.MakePointerType(attributes: NotPublic)
System.Reflection.Emit.Tests.ConstructorBuilderSetImplementationFlags.MethodImplementationFlags_SetToCustomValue
System.Reflection.Emit.Tests.ConstructorBuilderSetImplementationFlags.SetImplementationFlags_TypeAlreadyCreated_ThrowsInvalidOperationException
System.Reflection.Emit.Tests.ConstructorBuilderSetImplementationFlags.MethodImplementationFlags_NotSet
System.Reflection.Emit.Tests.MethodBuilderContainsGenericParameters.ContainsGenericParameters_ThrowsNotSupportedException
System.Reflection.Emit.Tests.MethodBuilderDefineParameter.DefineParameter_NoParameters_NonZeroPosition_ThrowsArgumentOutOfRangeException(typeAttributes: AutoLayout | AnsiClass | Class | Abstract, methodAttributes: ReuseSlot | Public | Virtual | Abstract, parameterAttributes: HasDefault)
System.Reflection.Emit.Tests.MethodBuilderDefineParameter.DefineParameter_NoParameters_NonZeroPosition_ThrowsArgumentOutOfRangeException(typeAttributes: AutoLayout | AnsiClass | Class | Public, methodAttributes: ReuseSlot | Public, parameterAttributes: None)
System.Reflection.Emit.Tests.MethodBuilderDefineParameter.DefineParameter_InvalidPosition_ThrowsArgumentOutOfRangeException(typeAttributes: AutoLayout | AnsiClass | Class | Public, methodAttributes: ReuseSlot | Public, parameterAttributes: None, paramTypes: [typeof(string), typeof(object)], returnType: typeof(int))
System.Reflection.Emit.Tests.MethodBuilderDefineParameter.DefineParameter_InvalidPosition_ThrowsArgumentOutOfRangeException(typeAttributes: AutoLayout | AnsiClass | Class | Abstract, methodAttributes: ReuseSlot | Public | Virtual | Abstract, parameterAttributes: HasDefault, paramTypes: [typeof(int)], returnType: typeof(System.Void))
System.Reflection.Emit.Tests.TypeBuilderToString.ToString(typeName: "Test Type")
System.Reflection.Emit.Tests.TypeBuilderToString.ToString(typeName: "TestType")
System.Reflection.Emit.Tests.TypeBuilderToString.ToString(typeName: " ")
System.Reflection.Emit.Tests.TypeBuilderToString.ToString(typeName: "Test_Type")
System.Reflection.Emit.Tests.TypeBuilderToString.ToString(typeName: "Test-Type")
System.Reflection.Emit.Tests.TypeBuilderAssemblyQualifiedName.AssemblyQualifiedName(typeName: "-", assemblyName: "assembly name ")
System.Reflection.Emit.Tests.TypeBuilderAssemblyQualifiedName.AssemblyQualifiedName(typeName: "type name ", assemblyName: "assembly name ")
System.Reflection.Emit.Tests.TypeBuilderAssemblyQualifiedName.AssemblyQualifiedName(typeName: "TypeName", assemblyName: "assemblyname")
System.Reflection.Emit.Tests.TypeBuilderAssemblyQualifiedName.AssemblyQualifiedName(typeName: "TypeName", assemblyName: "ad df df")
System.Reflection.Emit.Tests.MethodBuilderSetImplementationFlags.SetImplementationFlags(implementationFlags: ForwardRef)
System.Reflection.Emit.Tests.MethodBuilderSetImplementationFlags.SetImplementationFlags(implementationFlags: Synchronized)
System.Reflection.Emit.Tests.MethodBuilderSetImplementationFlags.SetImplementationFlags(implementationFlags: Native)
System.Reflection.Emit.Tests.MethodBuilderSetImplementationFlags.SetImplementationFlags(implementationFlags: Managed)
System.Reflection.Emit.Tests.MethodBuilderSetImplementationFlags.SetImplementationFlags(implementationFlags: Managed)
System.Reflection.Emit.Tests.MethodBuilderSetImplementationFlags.SetImplementationFlags(implementationFlags: Unmanaged)
System.Reflection.Emit.Tests.ModuleBuilderDefineInitializedData.DefineInitializedData_InvalidDataLength_ThrowsArgumentException(length: 0)
System.Reflection.Emit.Tests.ModuleBuilderDefineInitializedData.DefineInitializedData_InvalidDataLength_ThrowsArgumentException(length: 4128768)
System.Reflection.Emit.Tests.ModuleBuilderDefineInitializedData.TestWithStaticAndPublic(attributes: Private)
System.Reflection.Emit.Tests.ModuleBuilderDefineInitializedData.TestWithStaticAndPublic(attributes: Private | Static)
System.Reflection.Emit.Tests.ModuleBuilderDefineInitializedData.TestWithStaticAndPublic(attributes: Public | Static)
System.Reflection.Emit.Tests.PropertyBuilderTest3.ExecutePosTest(attributes: SpecialName | RTSpecialName | HasDefault)
System.Reflection.Emit.Tests.PropertyBuilderTest3.ExecutePosTest(attributes: None)
System.Reflection.Emit.Tests.PropertyBuilderTest3.ExecutePosTest(attributes: RTSpecialName)
System.Reflection.Emit.Tests.PropertyBuilderTest3.ExecutePosTest(attributes: SpecialName)
System.Reflection.Emit.Tests.PropertyBuilderTest3.ExecutePosTest(attributes: HasDefault)
System.Reflection.Emit.Tests.MethodBuilderSetImplementationFlags.SetImplementationFlags(implementationFlags: NoInlining)
System.Reflection.Emit.Tests.MethodBuilderSetImplementationFlags.SetImplementationFlags(implementationFlags: OPTIL)
System.Reflection.Emit.Tests.MethodBuilderSetImplementationFlags.SetImplementationFlags(implementationFlags: Runtime)
System.Reflection.Emit.Tests.MethodBuilderSetImplementationFlags.SetImplementationFlags(implementationFlags: Runtime)
System.Reflection.Emit.Tests.MethodBuilderSetImplementationFlags.SetImplementationFlags(implementationFlags: PreserveSig)
System.Reflection.Emit.Tests.MethodBuilderSetImplementationFlags.SetImplementationFlags(implementationFlags: InternalCall)
System.Reflection.Emit.Tests.MethodBuilderSetImplementationFlags.SetImplementationFlags_TypeCreated_ThrowsInvalidOperationException
# fails only in the simulator with FileNotFoundException
System.IO.Tests.File_Move.MoveToSameNameDifferentCasing
System.IO.Tests.FileInfo_MoveTo.MoveToSameNameDifferentCasing
# Assembly: [monotouch_corlib_xunit-test, Version=0.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756]
# Exception messages: Assert.Contains() Failure
# Not found: ConcurrentExclusiveTaskScheduler { Id = 2, MaximumConcurrencyLevel = 8 }
# In value: TaskScheduler[] [ThreadPoolTaskScheduler { Id = 1, MaximumConcurrencyLevel = 2147483647 }]
System.Threading.Tasks.Tests.TaskSchedulerTests.GetTaskSchedulersForDebugger_DebuggerAttached_ReturnsAllSchedulers
# System.InvalidOperationException : No data found for System.Tests.GuidTests.Parse_Invalid_NetcoreApp
System.Tests.GuidTests.Parse_Invalid_NetcoreApp
# Exception messages: Assert.Equal() Failure
# Expected: 252
#Actual: 248
System.IO.Tests.File_Exists.DirectoryLongerThanMaxDirectoryAsPath_DoesntThrow
# Exception messages: Assert.True() Failure
# Expected: True
# Actual: False Exception stack traces: at System.IO.Tests.FileInfo_Exists.CaseInsensitivity
System.IO.Tests.FileInfo_Exists.CaseInsensitivity
# Exception messages: System.BadImageFormatException : Cannot box IsByRefLike type 'System.ReadOnlySpan`1'
System.Reflection.Tests.ModuleTest.CustomAttributes
System.Reflection.Tests.ModuleTest.CustomAttributes
# True
# Actual: False Exception stack traces: at System.IO.Tests.DirectoryInfo_Exists.CaseInsensitivity ()
System.IO.Tests.DirectoryInfo_Exists.CaseInsensitivity
# Exception messages: System.InvalidOperationException : No data found for System.Reflection.Tests.ModuleTests.ResolveField
System.Reflection.Tests.ModuleTests.ResolveField
# System.InvalidOperationException : No data found for System.Reflection.Tests.ModuleTests.ResolveMethod
System.Reflection.Tests.ModuleTests.ResolveMethod
# Fail on 32b iOS devices, mono issue: https://github.com/mono/mono/issues/15307
Platform32:System.IO.Tests.BinaryWriter_WriteTests.BinaryWriter_WriteInt16Test
Platform32:System.Buffers.Binary.Tests.BinaryWriterUnitTests.SpanWriteInt16(value: -32768)
Platform32:System.Tests.SByteTests.Parse
Platform32:System.Tests.SByteTests.Parse(value: "-123", style: Integer, provider: null, expected: -123)
Platform32:System.Tests.SByteTests.Parse_Span_Valid
Platform32:System.Tests.SByteTests.Parse(value: "(123)", style: AllowParentheses, provider: null, expected: -123)
Platform32:System.Tests.SByteTests.Parse_Span_Valid(value: "-123", offset: 0, count: 2, style: Integer, provider: null, expected: -1)
Platform32:System.Tests.SByteTests.Parse_Span_Valid(value: "(123)", offset: 0, count: 5, style: AllowParentheses, provider: null, expected: -123)
Platform32:System.Tests.SByteTests.Parse_Span_Valid(value: "-123", offset: 0, count: 4, style: Integer, provider: null, expected: -123)
Platform32:System.IO.Tests.UmaTests.UmaReadWrite
Platform32:System.Tests.ConvertToSByteTests.FromSingle
Platform32:System.Tests.ConvertToSByteTests.FromInt16
Platform32:System.Tests.ConvertToSByteTests.FromDecimal
Platform32:System.Tests.ConvertToSByteTests.FromDouble
Platform32:System.Tests.ConvertToSByteTests.FromSByte
Platform32:System.Tests.ConvertToSByteTests.FromStringWithBase
Platform32:System.Tests.ConvertToSByteTests.FromInt64
Platform32:System.Tests.ConvertToSByteTests.FromString
Platform32:System.Tests.ConvertToSByteTests.FromInt32
Platform32:System.Tests.ConvertToInt16Tests.FromDouble
Platform32:System.Tests.ConvertToInt16Tests.FromInt32
Platform32:System.Tests.ConvertToInt16Tests.FromStringWithBase
Platform32:System.Tests.ConvertToInt16Tests.FromInt64
Platform32:System.Tests.ConvertToInt16Tests.FromSByte
Platform32:System.Tests.ConvertToInt16Tests.FromInt16
Platform32:System.Tests.ConvertToInt16Tests.FromDecimal
Platform32:System.Tests.ConvertToInt16Tests.FromSingle
Platform32:System.Tests.ConvertToInt16Tests.FromString
# mono issue: https://github.com/mono/mono/issues/14666
KLASS:System.Threading.ThreadPools.Tests.ThreadPoolTests
# tests do crash do to memory issues
KLASS:System.IO.Tests.FileInfo_CopyTo_str_b
KLASS:System.IO.Tests.File_Copy_str_str_b
KLASS:System.IO.Tests.FileInfo_CopyTo_str
KLASS:System.IO.Tests.File_Copy_str_str
KLASS:System.Reflection.Tests.MemberInfoNetCoreAppTests
KLASS:System.Memory.Tests.ReadOnlySequenceTestsChar+SplitInThreeSegments
KLASS:System.Memory.Tests.ReadOnlySequenceTestsChar+SegmentPerChar
KLASS:System.Memory.Tests.ReadOnlySequenceTestsChar+SingleSegment
KLASS:System.Memory.Tests.ReadOnlySequenceTestsChar+Memory
KLASS:System.Memory.Tests.ReadOnlySequenceTestsChar+String
KLASS:System.Memory.Tests.ReadOnlySequenceTestsChar+Array
KLASS:System.Memory.Tests.ReadOnlySequenceTestsByte+SplitInThreeSegments
KLASS:System.Memory.Tests.ReadOnlySequenceTestsByte+SegmentPerByte
KLASS:System.Memory.Tests.ReadOnlySequenceTestsByte+SingleSegment
# produces malloc errors on 32 devices.
# malloc: *** mach_vm_map(size=1048576) failed (error code=3)
KLASS:System.IO.Tests.UmaTests.UmaReadWrite
# Expected: typeof(System.ArgumentException)
# Actual: typeof(System.MissingMethodException): Method not found: System.TimeSpan System.TimeSpan.Divide(double)
KLASS:System.Tests.TimeSpanTests
# DEVICE FAILURES
System.Collections.Tests.StackTests.DebuggerAttribute_NullStack_ThrowsArgumentNullException
System.Collections.Tests.StackTests.DebuggerAttribute
System.Collections.Tests.QueueTests.DebuggerAttribute_NullQueue_ThrowsArgumentNullException
System.Collections.Tests.QueueTests.DebuggerAttribute
System.Collections.Concurrent.Tests.BlockingCollectionTests.TestDebuggerAttributes
System.Collections.Concurrent.Tests.BlockingCollectionTests.TestDebuggerAttributes_Null
System.Collections.Specialized.Tests.ListDictionaryTests.Remove_CustomComparerTest
System.Collections.Specialized.Tests.ListDictionaryTests.Set_CustomComparerTest
System.Collections.Generic.Tests.ComparerTests.NullableComparisons<Int32>(leftValue: -1, leftHasValue: True, rightValue: 4, rightHasValue: True, expected: -1)
System.Collections.Generic.Tests.ComparerTests.NullableComparisons<Int32>(leftValue: 4, leftHasValue: True, rightValue: -1, rightHasValue: True, expected: 1)
System.Collections.Generic.Tests.ComparerTests.NullableComparisons<Int32>(leftValue: -2147483648, leftHasValue: True, rightValue: 0, rightHasValue: False, expected: 1)
System.Collections.Generic.Tests.ComparerTests.NullableComparisons<Int32>(leftValue: -2147483648, leftHasValue: True, rightValue: 0, rightHasValue: False, expected: 1)
System.Collections.Generic.Tests.ComparerTests.NullableComparisons<Int32>(leftValue: -2147483648, leftHasValue: True, rightValue: 2147483647, rightHasValue: True, expected: -1)
System.Collections.Generic.Tests.ComparerTests.NullableComparisons<Int32>(leftValue: 2147483647, leftHasValue: True, rightValue: -2147483648, rightHasValue: True, expected: 1)
System.Collections.Generic.Tests.ComparerTests.NullableComparisons<Int32>(leftValue: 0, leftHasValue: False, rightValue: -2147483648, rightHasValue: True, expected: -1)
System.Collections.Generic.Tests.ComparerTests.NullableComparisons<Int32>(leftValue: 0, leftHasValue: False, rightValue: -2147483648, rightHasValue: True, expected: -1)
System.Tests.ValueTupleTests.TestEquals_GetHashCode
System.Collections.Tests.HashtableTests.Ctor_Int_Int_IEqualityComparer(capacity: 10, loadFactor: 0,2)
System.Collections.Tests.HashtableTests.Ctor_Int_Int_IEqualityComparer(capacity: 0, loadFactor: 0,1)
System.Collections.Tests.HashtableTests.Ctor_Int_Int_IEqualityComparer(capacity: 100, loadFactor: 0,3)
System.Collections.Tests.HashtableTests.DebuggerAttribute
System.Collections.Tests.HashtableTests.ContainsKey_EqualObjects
System.Collections.Concurrent.Tests.ConcurrentDictionaryTests.TestDebuggerAttributes_Null
System.Collections.Concurrent.Tests.ConcurrentDictionaryTests.TestDebuggerAttributes
System.SpanTests.ReadOnlySpanTests.BinarySearch_UInt
System.SpanTests.ReadOnlySpanTests.BinarySearch_Double
# device failures, reported at: https://github.com/mono/mono/issues/15983
System.Reflection.Tests.MethodBaseTests.Test_GetCurrentMethod_Inlineable
# device issues, it was reported here: https://github.com/mono/mono/issues/14761
System.Text.Tests.StringBuilderTests.Append_CharPointer_Null_ThrowsNullReferenceException
# mono issue: https://github.com/mono/mono/issues/17752
# Exception messages: System.OutOfMemoryException : Insufficient memory to continue the execution of the program.
Platform32:System.Reflection.Tests.RuntimeReflectionExtensionsTests.GetRuntimeMethod
# maccore issue: https://github.com/xamarin/maccore/issues/1659
# random OOMs
Platform32:System.Collections.Tests.HashtableTests.Ctor_Int_Int_GenerateNewPrime
Platform32:System.Tests.BitConverterTests.ToString_ByteArrayTooLong_Throws
# device failures, reported at: https://github.com/mono/mono/issues/17375
Platform32:System.Reflection.Tests.RuntimeReflectionExtensionsTests.GetRuntimeMethod
Platform32:System.Reflection.Tests.RuntimeReflectionExtensionsTests.GetRuntimeField
Platform32:System.Reflection.Tests.RuntimeReflectionExtensionsTests.GetRuntimeEvent
Platform32:System.Reflection.Tests.RuntimeReflectionExtensionsTests.GetRuntimeProperty
# 32bits device failures / https://github.com/mono/mono/issues/18616
Platform32:System.Tests.ConvertToBooleanTests.FromDouble
Platform32:System.Tests.ConvertToBooleanTests.FromSingle
Platform32:System.Tests.BitConverterArray.ConvertFromFloat(num: 0, expected: [1, 0, 0, 0])
Platform32:System.Tests.BitConverterSpan.ConvertFromFloat(num: 0, expected: [1, 0, 0, 0])
# https://github.com/xamarin/maccore/issues/2296
KLASS:System.Tests.DateTimeTests

Просмотреть файл

@ -1,6 +0,0 @@
# Exception messages: System.ArgumentException : Missing parameter does not have a default value.
Microsoft.CSharp.RuntimeBinder.Tests.DefaultParameterTests.MarshalAsOptionalsCorrectDefault
# System.NotImplementedException
Microsoft.CSharp.RuntimeBinder.Tests.DelegateInDynamicTests.DelegateWithOutParametersInDynamicNamedArgumentInvocation
Microsoft.CSharp.RuntimeBinder.Tests.DelegateInDynamicTests.DelegateWithOutParameterInDynamic

Просмотреть файл

@ -1,63 +0,0 @@
# Make OOM on the 32b simulator
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest8_ConcWaitAndRelease(initial: 0, maximum: 1000, waitThreads: 50, releaseThreads: 25, succeededWait: 25, failedWait: 25, finalCount: 0, timeout: 500)
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest8_ConcWaitAndRelease(initial: 5, maximum: 1000, waitThreads: 50, releaseThreads: 50, succeededWait: 50, failedWait: 0, finalCount: 5, timeout: 1000)
# fail on 32 simulator
# Exception messages: System.MissingMethodException : Method not found: System.Runtime.CompilerServices.ConfiguredAsyncDisposable System.Threading.Tasks.TaskExtensions.ConfigureAwait(System.IAsyncDisposable,bool)
System.Runtime.CompilerServices.Tests.ConfiguredAsyncDisposableTests.DisposeAsync_InvokesUnderlyingDisposeAsync(continueOnCapturedContext: True)
System.Runtime.CompilerServices.Tests.ConfiguredAsyncDisposableTests.DisposeAsync_InvokesUnderlyingDisposeAsync(continueOnCapturedContext: False)
System.Runtime.CompilerServices.Tests.ConfiguredAsyncDisposableTests.DisposeAsync_ContinuesOnCapturedContextIfExpected(continueOnCapturedContext: True)
System.Runtime.CompilerServices.Tests.ConfiguredAsyncDisposableTests.DisposeAsync_ContinuesOnCapturedContextIfExpected(continueOnCapturedContext: False)
System.Runtime.CompilerServices.Tests.ConfiguredCancelableAsyncEnumerableTests.Default_ConfigureAwait_WithCancellation_NoThrow
System.Runtime.CompilerServices.Tests.ConfiguredCancelableAsyncEnumerableTests.Default_WithCancellation_ConfigureAwait_NoThrow
System.Runtime.CompilerServices.Tests.ConfiguredCancelableAsyncEnumerableTests.ConfigureAwait_AwaitDisposeAsync_FlagsSetAppropriately(continueOnCapturedContext: True)
System.Runtime.CompilerServices.Tests.ConfiguredCancelableAsyncEnumerableTests.ConfigureAwait_AwaitDisposeAsync_FlagsSetAppropriately(continueOnCapturedContext: False)
System.Runtime.CompilerServices.Tests.ConfiguredCancelableAsyncEnumerableTests.WithCancellation_TokenPassedThrough
System.Runtime.CompilerServices.Tests.ConfiguredCancelableAsyncEnumerableTests.Default_GetAsyncEnumerator_Throws
System.Runtime.CompilerServices.Tests.ConfiguredCancelableAsyncEnumerableTests.ConfigureAwait_AwaitMoveNextAsync_FlagsSetAppropriately(continueOnCapturedContext: False)
System.Runtime.CompilerServices.Tests.ConfiguredCancelableAsyncEnumerableTests.ConfigureAwait_AwaitMoveNextAsync_FlagsSetAppropriately(continueOnCapturedContext: True)
# Expected: typeof(System.OverflowException)
# Actual: (No exception was thrown)
System.Tests.DecimalTests.Remainder_Invalid(d1: 79228162514264337593543950335, d2: 0.1, exceptionType: typeof(System.OverflowException))
# fails on 32b and crashes the test app. Issue https://github.com/xamarin/maccore/issues/1788
Platform32:System.Threading.Tasks.Tests.ParallelForTests.RunSimpleParallelForeachAddTest_List(count: 16777216)
# tests fail on 32b due to too much memory usage. Issue https://github.com/mono/mono/issues/16671
Platform32:System.Collections.Tests.Dictionary_Generic_Tests_string_string.TrimExcess_NoArgument_TrimAfterEachBulkAddOrRemove_TrimsToAtLeastCount(initialCount: 1000, numRemove: 400, numAdd: 5000, newCount: 85, newCapacity: 89)
Platform32:System.Collections.Tests.Dictionary_Generic_Tests_string_string.TrimExcess_NoArgument_TrimAfterEachBulkAddOrRemove_TrimsToAtLeastCount(initialCount: 1000, numRemove: 400, numAdd: 500, newCount: 1, newCapacity: 3)
Platform32:System.Collections.Tests.Dictionary_Generic_Tests_string_string.TrimExcess_NoArgument_TrimAfterEachBulkAddOrRemove_TrimsToAtLeastCount(initialCount: 1000, numRemove: 900, numAdd: 500, newCount: 85, newCapacity: 89)
Platform32:System.Collections.Tests.Dictionary_Generic_Tests_string_string.TrimExcess_NoArgument_TrimAfterEachBulkAddOrRemove_TrimsToAtLeastCount(initialCount: 1000, numRemove: 900, numAdd: 5000, newCount: 85, newCapacity: 89)
Platform32:System.Collections.Tests.Dictionary_Generic_Tests_string_string.TrimExcess_NoArgument_TrimAfterEachBulkAddOrRemove_TrimsToAtLeastCount(initialCount: 1000, numRemove: 400, numAdd: 500, newCount: 85, newCapacity: 89)
Platform32:System.Collections.Tests.Dictionary_Generic_Tests_string_string.TrimExcess_WithArguments_OnDictionaryWithManyElementsRemoved_TrimsToAtLeastRequested(finalCount: 85)
Platform32:System.Collections.Tests.Dictionary_Generic_Tests_string_string.TrimExcess_WithArguments_OnDictionaryWithManyElementsRemoved_TrimsToAtLeastRequested(finalCount: 89)
Platform32:System.Collections.Specialized.Tests.OrderedDictionaryTests.CreatingWithDifferentCapacityValues
Platform32:System.Collections.Specialized.Tests.OrderedDictionaryTests.RemoveTests
Platform32:System.Collections.Specialized.Tests.OrderedDictionaryTests.GettingByKeyTests
Platform32:System.Collections.Specialized.Tests.OrderedDictionaryTests.ValuesPropertyContainsAllValues
Platform32:System.Collections.Specialized.Tests.OrderedDictionaryTests.RemoveAtTests
Platform32:System.Collections.Specialized.Tests.OrderedDictionaryTests.PassingCapacityAndIEqualityComparer
Platform32:System.Collections.Specialized.Tests.OrderedDictionaryTests.KeysPropertyContainsAllKeys
Platform32:System.Collections.Specialized.Tests.OrderedDictionaryTests.ClearTests
Platform32:System.Collections.Specialized.Tests.OrderedDictionaryTests.ContainsTests
Platform32:System.Collections.Specialized.Tests.OrderedDictionaryTests.GettingByIndexTests
Platform32:System.Collections.Specialized.Tests.OrderedDictionaryTests.CountTests
Platform32:System.Text.Tests.StringBuilderTests.EnsureCapacity
Platform32:System.Collections.Concurrent.Tests.ConcurrentDictionaryTests.TestRemove1
Platform32:System.Collections.Concurrent.Tests.ConcurrentDictionaryTests.TestRemove2
# test fail because they try to create more threands than what the platform can handle. Mono issue: https://github.com/mono/mono/issues/16711
Platform32:System.Threading.Tasks.Tests.TaskRtTests_Core.RunLongRunningTaskTests
Platform32:System.Threading.Tasks.Tests.TaskRtTests_Core.TestTaskTConstruction_tco
Platform32:Test.TaskContinueWhenAnyTests.RunContinueWhenAnyTests
# Test running out of memory
Platform32:System.Collections.Tests.BitArray_OperatorsTests.Xor_Operator(l: [False, True, False, True, False, ...], r: [True, True, True, True, True, ...], expected: [True, False, True, False, True, ...])
# Test fails because the threadpool cannot create more threads. Mono issue: https://github.com/mono/mono/issues/17588
Platform32:System.Threading.Tasks.Tests.CancelWait.TaskCancelWaitTestCases.TaskCancelWait16
# out of memory, filled in mono as https://github.com/mono/mono/issues/17480
Platform32:System.Memory.Tests.ReadOnlySequenceTestsCommonChar.HelloWorldAcrossTwoBlocks
# fails on 32b for an unknown reason, passed on 64
Platform32:System.Collections.Concurrent.Tests.ConcurrentDictionary_NonGeneric_Tests.ICollection_NonGeneric_CopyTo_TwoDimensionArray_ThrowsException(count: 75)

Просмотреть файл

@ -1,3 +0,0 @@
# Mono.CSharp.InternalErrorException : (1,1): InteractiveHost
# NUnit.Framework.AssertionException : Internal compiler error: Internal compiler error: Internal compiler error: Internal compiler error: The predefined type `Microsoft.CSharp.RuntimeBinder.Binder' is not defined or imported
MonoTests.EvaluatorTest.ExpressionsTest.DynamicStatement

Просмотреть файл

@ -1,42 +0,0 @@
# System.IO.DirectoryNotFoundException : Could not find a part of the path
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.IsSymmetricAlgorithm
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.IsSupportedAlgorithm
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.IsAsymmetricAlgorithm
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GetSymmetricAlgorithmWrongSizeDES
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GetSymmetricAlgorithmWrongSize2
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GetSymmetricAlgorithmWrongSize
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GetSymmetricAlgorithmNullKey
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GetSymmetricAlgorithmAES
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GetSymmetricAlgorithm3VulnerableTDESWrap
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GetSymmetricAlgorithm3VulnerableTDESEnc
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GetKeyedHashAlgorithm
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GenerateDerivedKeyUnusualOffset
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GenerateDerivedKeyUnusualLength
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GenerateDerivedKeyUnsupportedAlgorithm
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GenerateDerivedKeyNullNonce
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GenerateDerivedKeyNullLabel
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GenerateDerivedKeyNullAlgorithm
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GenerateDerivedKeyNegativeOffset
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GenerateDerivedKeyNegativeLength
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.GenerateDerivedKey
MonoTests.System.IdentityModel.Tokens.InMemorySymmetricSecurityKeyTest.CreateSimple
MonoTests.System.IdentityModel.Selectors.X509ThumbprintKeyIdentifierClauseTest.Properties
MonoTests.System.IdentityModel.Selectors.X509SecurityTokenTest.MatchesKeyIdentifierClause
MonoTests.System.IdentityModel.Selectors.X509SecurityTokenTest.DefaultValues
MonoTests.System.IdentityModel.Selectors.X509IssuerSerialKeyIdentifierClauseTest.Properties
MonoTests.System.IdentityModel.Selectors.X509IssuerSerialKeyIdentifierClauseTest.NegativeSerialNumber
MonoTests.System.IdentityModel.Selectors.X509AsymmetricSecurityKeyTest.IsSupportedAlgorithmNullAlgName
MonoTests.System.IdentityModel.Selectors.X509AsymmetricSecurityKeyTest.IsSupportedAlgorithm
MonoTests.System.IdentityModel.Selectors.X509AsymmetricSecurityKeyTest.IsAsymmetricAlgorithm
MonoTests.System.IdentityModel.Selectors.X509AsymmetricSecurityKeyTest.GetHashAlgorithmForSignatureUnsupported
MonoTests.System.IdentityModel.Selectors.X509AsymmetricSecurityKeyTest.GetHashAlgorithmForSignatureNull
MonoTests.System.IdentityModel.Selectors.X509AsymmetricSecurityKeyTest.GetHashAlgorithmForSignatureFine
MonoTests.System.IdentityModel.Selectors.X509AsymmetricSecurityKeyTest.GetAsymmetricAlgorithmWhereNoPrivKey
MonoTests.System.IdentityModel.Selectors.X509AsymmetricSecurityKeyTest.GetAsymmetricAlgorithmNullAlgName
MonoTests.System.IdentityModel.Selectors.X509AsymmetricSecurityKeyTest.GetAsymmetricAlgorithmHMACSHA1
MonoTests.System.IdentityModel.Selectors.X509AsymmetricSecurityKeyTest.GetAsymmetricAlgorithmDSA
MonoTests.System.IdentityModel.Selectors.X509AsymmetricSecurityKeyTest.GetAsymmetricAlgorithm
MonoTests.System.IdentityModel.Selectors.X509AsymmetricSecurityKeyTest.DefaultValues
MonoTests.System.IdentityModel.Claims.ClaimSetTest.SystemClaimSet
MonoTests.System.IdentityModel.Claims.ClaimTest.CreateClaims
MonoTests.System.IdentityModel.Claims.X509CertificateClaimSetTest.DefaultValues

Просмотреть файл

@ -1,16 +0,0 @@
# System.IO.DirectoryNotFoundException : Could not find a part of the path
MonoTests.System.ServiceModel.WrappedKeySecurityTokenTest.X509WrappingToken1
MonoTests.System.ServiceModel.WrappedKeySecurityTokenTest.X509TokenForSymmetricKeyWrap
MonoTests.System.ServiceModel.WrappedKeySecurityTokenTest.UserNameToken
MonoTests.System.ServiceModel.WrappedKeySecurityTokenTest.CtorNullWrappingTokenReference
MonoTests.System.ServiceModel.WrappedKeySecurityTokenTest.CtorNullWrappingToken
MonoTests.System.ServiceModel.WrappedKeySecurityTokenTest.CtorNullWrappingAlgorithm
MonoTests.System.ServiceModel.WrappedKeySecurityTokenTest.CtorNullKey
MonoTests.System.ServiceModel.WrappedKeySecurityTokenTest.CtorNullId
MonoTests.System.ServiceModel.WrappedKeySecurityTokenTest.CreateBinarySecretKeyIdentifierClause
MonoTests.System.ServiceModel.WrappedKeySecurityTokenTest.BinarySecretTokenForSymmetricKeyWrap
MonoTests.System.ServiceModel.WrappedKeySecurityTokenTest.BinarySecretTokenForAsymmetricKeyWrap
MonoTests.System.ServiceModel.EndpointIdentityTest.CreateX509CertificateIdentity
MonoTests.System.ServiceModel.EndpointAddressTest.WriteToWSA10
MonoTests.System.ServiceModel.EndpointAddressTest.WriteContentsToWSA10
MonoTests.System.ServiceModel.Description.MetadataSetTest.ReadFrom

Просмотреть файл

@ -1,8 +0,0 @@
# Expected: null
# But was: <AppKit.AppKitSynchronizationContext>
MonoTests.System.ComponentModel.AsyncOperationManagerTest.SyncContext
# System.NullReferenceException : Object reference not set to an instance of an object
MonoTests.System.Net.NetworkInformation.PingTest.SendAsyncIPV4Fails
MonoTests.System.Net.NetworkInformation.PingTest.SendAsyncIPV4Succeeds

Просмотреть файл

@ -1,51 +0,0 @@
# System.Security.SecurityException : No access to the given key
# ----> System.UnauthorizedAccessException : Access to the path '/Library/Application Support/com.xamarin.bcltests.Mac OS X BCL tests group 3/LocalMachine' is denied.
# ----> System.IO.IOException : Permission denied
MonoTests.Microsoft.Win32.RegistryKeyTest.OpenSubKey
# System.IO.FileNotFoundException : Could not load the file 't81'.
MonoTests.System.Reflection.Emit.TypeBuilderTest.Ldfld_Encoding_10122
# #0
# Expected: True
# But was: False
MonoTests.System.Runtime.CompilerServices.AsyncTaskMethodBuilderTest.CallContextFlow
# An unexpected exception type was thrown
# Expected: System.ArgumentNullException
# but was: System.TypeLoadException : Can't create an instance of permission class System.DirectoryServices.DirectoryServicesPermission, System.DirectoryServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a.
MonoTests.System.Security.Policy.AllMembershipConditionTest.FromXml_SecurityElementNull
MonoTests.System.Security.Policy.AllMembershipConditionTest.ToXml
MonoTests.System.Security.Policy.ApplicationDirectoryMembershipConditionTest.FromXml_SecurityElementNull
MonoTests.System.Security.Policy.ApplicationDirectoryMembershipConditionTest.ToXml
MonoTests.System.Security.Policy.GetMembershipConditionTest.FromXml_SecurityElementNull
MonoTests.System.Security.Policy.HashMembershipConditionTest.FromXml_SecurityElementNull
MonoTests.System.Security.Policy.HashMembershipConditionTest.ToXml
MonoTests.System.Security.Policy.PolicyStatementTest.FromXml_SecurityElementNull
MonoTests.System.Security.Policy.GacMembershipConditionTest.FromXml_SecurityElementNull
MonoTests.System.Security.Policy.GacMembershipConditionTest.ToXml
# System.TypeLoadException : Can't create an instance of permission class System.DirectoryServices.DirectoryServicesPermission, System.DirectoryServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a.
MonoTests.System.Security.Policy.PolicyLevelTest.CreateAppDomainLevel
# System.TypeLoadException : Can't create an instance of permission class System.DirectoryServices.DirectoryServicesPermission, System.DirectoryServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a.
MonoTests.System.Security.Policy.PolicyLevelTest.Label
MonoTests.System.Security.Policy.PolicyLevelTest.Recover_AppDomainLevel
MonoTests.System.Security.Policy.PolicyLevelTest.Reset
MonoTests.System.Security.Policy.PolicyLevelTest.ResolveMatchingCodeGroups_Null
MonoTests.System.Security.Policy.PolicyLevelTest.Resolve_Empty
MonoTests.System.Security.Policy.PolicyLevelTest.Resolve_InternetUnrestricted
MonoTests.System.Security.Policy.PolicyLevelTest.Resolve_MyComputerUnrestricted
MonoTests.System.Security.Policy.PolicyLevelTest.Resolve_Null
MonoTests.System.Security.Policy.PolicyLevelTest.RootCodeGroup_Null
MonoTests.System.Security.Policy.PolicyLevelTest.ToXml
MonoTests.System.Security.Policy.PolicyLevelTest.FromXml_Null
MonoTests.System.Security.Policy.PolicyLevelTest.ResolveMatchingCodeGroups_Empty
# String lengths are both 19. Strings differ at index 12.
# Expected: "10/27/2002 03:00:00"
# But was: "10/27/2002 02:59:59"
MonoTests.System.TimeZoneTest.TestCtors
# https://github.com/xamarin/maccore/issues/2629
MonoTests.System.TimeZoneInfoTest+IsDaylightSavingTimeTests.Bug_16395

Просмотреть файл

@ -1,195 +0,0 @@
# blocks the application
System.Threading.Tasks.Tests.YieldAwaitableTests.RunAsyncYieldAwaiterTests_Negative
System.Threading.Tasks.Tests.YieldAwaitableTests.RunAsyncYieldAwaiterTests
System.Threading.Tasks.Tests.YieldAwaitableTests.AsyncMethod_Yields_ReturnsToDefaultTaskScheduler
System.Threading.Tasks.Tests.YieldAwaitableTests.AsyncMethod_Yields_ReturnsToCorrectTaskScheduler
System.Threading.Tasks.Tests.YieldAwaitableTests.AsyncMethod_Yields_ReturnsToCorrectSynchronizationContext
TaskCoverage.Coverage.TaskWait_MaxInt32
TaskCoverage.Coverage.TaskContinuation
TaskCoverage.Coverage.TaskWaitWithCTS
TaskCoverage.Coverage.TaskWaitAny_WhenAny
TaskCoverage.Coverage.CancellationTokenRegitration
TaskCoverage.Coverage.TaskAwaiter
TaskCoverage.Coverage.TaskConfigurableAwaiter
TaskCoverage.Coverage.FromAsync
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest0_Cto
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest0_Ctor_Negative
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest1_Wait
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest1_Wait_NegativeCases
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest1_WaitAsync
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest1_WaitAsync_NegativeCases
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest2_Release
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest2_Release_NegativeCases
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest4_Dispose
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest5_CurrentCount
System.Threading.Tests.SemaphoreSlimTests.RunSemaphoreSlimTest7_AvailableWaitHandle
System.Threading.Tests.AsyncLocalTests.CaptureAndRestoreNullAsyncLocals
System.Threading.Tests.AsyncLocalTests.AsyncMethodNotifications
System.Threading.Tests.BarrierTests.RemovingWaitingParticipants
System.Threading.Tasks.Tests.TaskAwaiterTests.Await_TaskCompletesOnNonDefaultSyncCtx_ContinuesOnDefaultSyncCtx
System.Threading.Tasks.Tests.TaskAwaiterTests.Await_TaskCompletesOnNonDefaultScheduler_ContinuesOnDefaultScheduler
System.Threading.Tasks.Tests.YieldAwaitableTests.AsyncMethod_Yields_ReturnsToCorrectTaskScheduler
# Assembly: [monotouch_corlib_xunit-test, Version=0.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756]
# Exception messages: Assert.Contains() Failure
# Not found: ConcurrentExclusiveTaskScheduler { Id = 2, MaximumConcurrencyLevel = 8 }
# In value: TaskScheduler[] [ThreadPoolTaskScheduler { Id = 1, MaximumConcurrencyLevel = 2147483647 }]
System.Threading.Tasks.Tests.TaskSchedulerTests.GetTaskSchedulersForDebugger_DebuggerAttached_ReturnsAllSchedulers
# System.InvalidOperationException : No data found for System.Tests.GuidTests.Parse_Invalid_NetcoreApp
System.Tests.GuidTests.Parse_Invalid_NetcoreApp
# Exception messages: Assert.Equal() Failure
# Expected: 252
#Actual: 248
System.IO.Tests.File_Exists.DirectoryLongerThanMaxDirectoryAsPath_DoesntThrow
# Exception messages: Assert.True() Failure
# Expected: True
# Actual: False Exception stack traces: at System.IO.Tests.FileInfo_Exists.CaseInsensitivity
System.IO.Tests.FileInfo_Exists.CaseInsensitivity
# Exception messages: System.BadImageFormatException : Cannot box IsByRefLike type 'System.ReadOnlySpan`1'
System.Reflection.Tests.ModuleTest.CustomAttributes
System.Reflection.Tests.ModuleTest.CustomAttributes
# True
# Actual: False Exception stack traces: at System.IO.Tests.DirectoryInfo_Exists.CaseInsensitivity ()
System.IO.Tests.DirectoryInfo_Exists.CaseInsensitivity
# Exception messages: System.InvalidOperationException : No data found for System.Reflection.Tests.ModuleTests.ResolveField
System.Reflection.Tests.ModuleTests.ResolveField
# System.InvalidOperationException : No data found for System.Reflection.Tests.ModuleTests.ResolveMethod
System.Reflection.Tests.ModuleTests.ResolveMethod
# blocks testing app
System.IO.Tests.TextReaderTests.NotEndOfStream
System.IO.Tests.TextReaderTests.ReadToEndAsync
System.IO.Tests.TextReaderTests.TestRead
System.IO.Tests.TextReaderTests.ReadZeroCharacters
System.IO.Tests.TextReaderTests.ArgumentNullOnNullArray
System.IO.Tests.TextReaderTests.ArgumentOutOfRangeOnInvalidOffset
System.IO.Tests.TextReaderTests.ArgumentOutOfRangeOnNegativCount
System.IO.Tests.TextReaderTests.ArgumentExceptionOffsetAndCount
System.IO.Tests.TextReaderTests.EmptyInput
System.IO.Tests.TextReaderTests.ReadCharArr
System.IO.Tests.TextReaderTests.ReadBlockCharArr
System.IO.Tests.TextReaderTests.ReadBlockAsyncCharArr
System.IO.Tests.TextReaderTests.ReadAsync
System.IO.Tests.TextReaderTests.ReadLines
System.IO.Tests.TextReaderTests.ReadLines2
System.IO.Tests.TextReaderTests.ReadLineAsyncContinuousNewLinesAndTabs
System.IO.Tests.TextReaderTests.ReadSpan
System.IO.Tests.TextReaderTests.ReadBlockSpan
System.IO.Tests.File_ReadWriteAllLines_Enumerable_EncodedAsync.NullEncodingAsync
System.IO.Tests.File_ReadWriteAllLines_Enumerable_EncodedAsync.TaskAlreadyCanceledAsync
System.IO.Tests.File_ReadWriteAllLines_Enumerable_EncodedAsync.InvalidPathAsync
System.IO.Tests.File_ReadWriteAllLines_Enumerable_EncodedAsync.NullLinesAsync
System.IO.Tests.File_ReadWriteAllLines_Enumerable_EncodedAsync.EmptyStringCreatesFileAsync
System.IO.Tests.File_ReadWriteAllLines_Enumerable_EncodedAsync.ValidWriteAsync(size: 0)
System.IO.Tests.File_ReadWriteAllLines_Enumerable_EncodedAsync.ValidWriteAsync(size: 100)
System.IO.Tests.File_ReadWriteAllLines_Enumerable_EncodedAsync.OverwriteAsync
System.IO.Tests.File_ReadWriteAllLines_Enumerable_EncodedAsync.OpenFile_ThrowsIOExceptionAsync
System.IO.Tests.File_ReadWriteAllLines_Enumerable_EncodedAsync.Read_FileNotFound
System.IO.Tests.File_ReadWriteAllLines_Enumerable_EncodedAsync.WriteToReadOnlyFile
System.IO.Tests.File_ReadWriteAllLines_Enumerable_EncodedAsync.DisposingEnumeratorClosesFileAsync
System.IO.Tests.BufferedStream_StreamAsync.ConcurrentOperationsAreSerialized
System.IO.Tests.BufferedStream_StreamAsync.UnderlyingStreamThrowsExceptions
System.IO.Tests.BufferedStream_StreamAsync.CopyToTest_RequiresFlushingOfWrites(copyAsynchronously: False)
System.IO.Tests.BufferedStream_StreamAsync.CopyToTest_RequiresFlushingOfWrites(copyAsynchronously: True)
System.IO.Tests.BufferedStream_StreamMethods.ReadByte_ThenRead_EndOfStreamCorrectlyFound
System.IO.Tests.BufferedStream_StreamMethods.MemoryStreamSeekStress
System.IO.Tests.BufferedStream_StreamMethods.MemoryStreamSeekStressWithInitialBuffer
System.IO.Tests.BufferedStream_StreamMethods.MemoryStreamStress
System.IO.Tests.BufferedStream_StreamMethods.FlushAsyncTest
System.IO.Tests.BufferedStream_StreamMethods.ArgumentValidation
System.IO.Tests.BufferedStream_StreamMethods.CreateWaitHandleTest
System.IO.Tests.BufferedStream_StreamMethods.Synchronized_NewObject
System.IO.Tests.BufferedStream_TestLeaveOpen.StreamReaderTest
System.IO.Tests.BufferedStream_TestLeaveOpen.BinaryReaderTest
System.IO.Tests.BufferedStream_TestLeaveOpen.StreamWriterTest
System.IO.Tests.BufferedStream_TestLeaveOpen.BinaryWriterTest
System.Runtime.CompilerServices.Tests.ConfiguredCancelableAsyncEnumerableTests.CanBeEnumeratedWithStandardPattern
System.IO.Tests.File_ReadWriteAllLines_EnumerableAsync.InvalidPathAsync
System.IO.Tests.File_ReadWriteAllLines_EnumerableAsync.NullLinesAsync
System.IO.Tests.File_ReadWriteAllLines_EnumerableAsync.EmptyStringCreatesFileAsync
System.IO.Tests.File_ReadWriteAllLines_EnumerableAsync.ValidWriteAsync(size: 0)
System.IO.Tests.File_ReadWriteAllLines_EnumerableAsync.ValidWriteAsync(size: 100)
System.IO.Tests.File_ReadWriteAllLines_EnumerableAsync.OverwriteAsync
System.IO.Tests.File_ReadWriteAllLines_EnumerableAsync.OpenFile_ThrowsIOExceptionAsync
System.IO.Tests.File_ReadWriteAllLines_EnumerableAsync.Read_FileNotFound
System.IO.Tests.File_ReadWriteAllLines_EnumerableAsync.WriteToReadOnlyFile
System.IO.Tests.File_ReadWriteAllLines_EnumerableAsync.DisposingEnumeratorClosesFileAsync
System.IO.Tests.File_ReadWriteAllLines_EnumerableAsync.TaskAlreadyCanceledAsync
System.Threading.Tasks.Tests.AsyncValueTaskMethodBuilderTests.Generic_SetStateMachine_InvalidArgument_ThrowsException
System.Threading.Tasks.Tests.AsyncValueTaskMethodBuilderTests.NonGeneric_Start_ExecutionContextChangesInMoveNextDontFlowOut
System.Threading.Tasks.Tests.AsyncValueTaskMethodBuilderTests.Generic_Start_ExecutionContextChangesInMoveNextDontFlowOut
System.Threading.Tasks.Tests.AsyncValueTaskMethodBuilderTests.NonGeneric_UsedWithAsyncMethod_CompletesSuccessfully(yields: 0)
System.Threading.Tasks.Tests.AsyncValueTaskMethodBuilderTests.NonGeneric_UsedWithAsyncMethod_CompletesSuccessfully(yields: 1)
System.Threading.Tasks.Tests.AsyncValueTaskMethodBuilderTests.NonGeneric_UsedWithAsyncMethod_CompletesSuccessfully(yields: 2)
System.Threading.Tasks.Tests.AsyncValueTaskMethodBuilderTests.NonGeneric_UsedWithAsyncMethod_CompletesSuccessfully(yields: 10)
System.Threading.Tasks.Tests.AsyncValueTaskMethodBuilderTests.Generic_UsedWithAsyncMethod_CompletesSuccessfully(yields: 0)
System.Threading.Tasks.Tests.AsyncValueTaskMethodBuilderTests.Generic_UsedWithAsyncMethod_CompletesSuccessfully(yields: 1)
System.Threading.Tasks.Tests.AsyncValueTaskMethodBuilderTests.Generic_UsedWithAsyncMethod_CompletesSuccessfully(yields: 2)
System.Threading.Tasks.Tests.AsyncValueTaskMethodBuilderTests.Generic_UsedWithAsyncMethod_CompletesSuccessfully(yields: 10)
System.Threading.Tasks.Tests.AsyncValueTaskMethodBuilderTests.AwaitTasksAndValueTasks_InTaskAndValueTaskMethods
System.IO.Tests.BufferedStreamFlushTests.ShouldNotFlushUnderlyingStreamIfReadOnly(underlyingCanSeek: True)
System.IO.Tests.BufferedStreamFlushTests.ShouldNotFlushUnderlyingStreamIfReadOnly(underlyingCanSeek: False)
System.IO.Tests.BufferedStreamFlushTests.ShouldAlwaysFlushUnderlyingStreamIfWritable(underlyingCanRead: True, underlyingCanSeek: True)
System.IO.Tests.BufferedStreamFlushTests.ShouldAlwaysFlushUnderlyingStreamIfWritable(underlyingCanRead: True, underlyingCanSeek: False)
System.IO.Tests.BufferedStreamFlushTests.ShouldAlwaysFlushUnderlyingStreamIfWritable(underlyingCanRead: False, underlyingCanSeek: True)
System.IO.Tests.BufferedStreamFlushTests.ShouldAlwaysFlushUnderlyingStreamIfWritable(underlyingCanRead: False, underlyingCanSeek: False)
# mono issue: https://github.com/mono/mono/issues/14666
KLASS:System.Threading.ThreadPools.Tests.ThreadPoolTests
KLASS:System.IO.Tests.File_AppendAllTextAsync
KLASS:System.IO.Tests.File_AppendAllTextAsync_Encoded
KLASS:System.IO.Tests.File_AppendAllLinesAsync
KLASS:System.IO.Tests.File_AppendAllLinesAsync_Encoded
KLASS:System.Threading.Tasks.Tests.ValueTaskTests
KLASS:System.IO.Tests.StreamCopyToTests
KLASS:System.Threading.Tasks.Sources.Tests.ManualResetValueTaskSourceTests
KLASS:System.IO.Tests.File_ReadWriteAllBytesAsync
KLASS:System.IO.Tests.File_ReadWriteAllTextAsync
KLASS:System.IO.Tests.File_ReadWriteAllText_EncodedAsync
# tests do crash do to memory issues
KLASS:System.IO.Tests.FileInfo_CopyTo_str_b
KLASS:System.IO.Tests.File_Copy_str_str_b
KLASS:System.IO.Tests.FileInfo_CopyTo_str
KLASS:System.IO.Tests.File_Copy_str_str
KLASS:System.Reflection.Tests.MemberInfoNetCoreAppTests
KLASS:System.Memory.Tests.ReadOnlySequenceTestsChar+SplitInThreeSegments
KLASS:System.Memory.Tests.ReadOnlySequenceTestsChar+SegmentPerChar
KLASS:System.Memory.Tests.ReadOnlySequenceTestsChar+SingleSegment
KLASS:System.Memory.Tests.ReadOnlySequenceTestsChar+Memory
KLASS:System.Memory.Tests.ReadOnlySequenceTestsChar+String
KLASS:System.Memory.Tests.ReadOnlySequenceTestsChar+Array
KLASS:System.Memory.Tests.ReadOnlySequenceTestsByte+SplitInThreeSegments
KLASS:System.Memory.Tests.ReadOnlySequenceTestsByte+SegmentPerByte
KLASS:System.Memory.Tests.ReadOnlySequenceTestsByte+SingleSegment
# produces malloc errors on
# malloc: *** mach_vm_map(size=1048576) failed (error code=3)
KLASS:System.IO.Tests.UmaTests.UmaReadWrite
# Assembly: [xammac_net_4_5_corlib_xunit-test, Version=0.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756]
# Exception messages: Timed out after 60000ms waiting for remote process 14855
System.IO.Tests.Directory_SetCurrentDirectory+Directory_SetCurrentDirectory_SymLink.SetToPathContainingSymLink
# Exception messages: System.InvalidOperationException : No data found for System.IO.Tests.File_Exists.UncPathWithoutShareNameAsPath_ReturnsFalse Exception stack traces:
# Execution time: 0
System.IO.Tests.File_Exists.UncPathWithoutShareNameAsPath_ReturnsFalse
# Expected: True
# Actual: False)
System.IO.Tests.FileInfo_Exists.UnsharedFileExists
# Exception messages: Timed out after 60000ms waiting for remote process 14899
Expected: True
Actual: False Exception stack traces: at System.Diagnostics.RemoteExecutorTestBase+RemoteInvokeHandle.Dispose (System.Boolean disposing) [0x0002d] in /Library/Frameworks/Xamarin.Mac.framework/Versions/Current/src/Xamarin.Mac/external/corefx/src/CoreFx.Private.TestUtilities/src/System/Diagnostics/RemoteExecutorTestBase.cs:241
System.IO.Tests.FileInfo_Exists.UnsharedFileExists
# https://github.com/xamarin/maccore/issues/2296
KLASS:System.Tests.DateTimeTests

Просмотреть файл

@ -1,26 +0,0 @@
# Expected string length 23 but was 0. Strings differ at index 0.
# Expected: "Test-appSettings.config"
# But was: <string.Empty>
MonoTests.System.Configuration.AppSettingsSectionTest.TestFile
# Expected: not null
# But was: null
MonoTests.System.Configuration.ConfigurationManagerTest.TestConnectionStringRetrieval
# The UnixSignalTest breaks NullReferenceException handling in the runtime.
# Any NRE will deadlock the process after this test, so just skip it.
MonoTests.Mono.Unix.UnixSignalTest
# Needs RabbitMQ:
# System.TypeInitializationException : The type initializer for '...' threw an exception.
# ----> System.IO.FileNotFoundException : Could not load the file 'Mono.Messaging.RabbitMQ, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756'.
MonoTests.System.Messaging.TransactionMessageTest
MonoTests.System.Messaging.AdminTest
MonoTests.System.Messaging.AsyncPeekTest
MonoTests.System.Messaging.AsyncReceiveTest
MonoTests.System.Messaging.BasicMessagingTest
MonoTests.System.Messaging.PeekTest
MonoTests.System.Messaging.SelectorTest
# System.ArgumentException : The value's length for key 'data source' exceeds it's limit of '128'.
DbLinqTest.DataContextTest.Ctor_FileOrServerOrConnectionIsFilename

Просмотреть файл

@ -1,9 +0,0 @@
# Expected: True
# But was: False
MonoTests.System.Net.WebClientTest.UploadDataAsyncCancelEvent
MonoTests.System.Net.WebClientTest.OpenReadTaskAsyncOnFile
MonoTests.System.Net.WebClientTest.UploadStringAsyncCancelEvent
MonoTests.System.Net.WebClientTest.UploadValuesAsyncCancelEvent
MonoTests.System.Net.WebSockets.ClientWebSocketTest.ServerHandshakeReturnWrongConnectionHeader
MonoTests.System.Net.WebSockets.ClientWebSocketTest.ServerHandshakeReturnWrongUpgradeHeader
MonoTests.System.Net.WebClientTest.UploadFileAsyncCancelEvent

Просмотреть файл

@ -1,2 +0,0 @@
# System.NullReferenceException : Object reference not set to an instance of an object
MonoTests.System.Xml.Xsl.XslTransformTests.Bug487065

Просмотреть файл

@ -1,15 +0,0 @@
# block test app
MonoTests.System.Diagnostics.StackFrameTest3.GetFrames_AsyncCalls
# An unexpected exception type was thrown
# Expected: System.ArgumentNullException
# but was: System.IO.DirectoryNotFoundException : Could not find a part of the path
MonoTests.System.ActivatorTest.GetObject_UrlNull
# System.NullReferenceException : Object reference not set to an instance of an object
MonoTests.System.Reflection.Emit.ModuleBuilderTest.DuplicateSymbolDocument
MonoTests.System.Reflection.Emit.TypeBuilderTest.CircularArrayType
# Expected: True
# But was: False
MonoTests.System.Runtime.InteropServices.RuntimeEnvironmentTest.SystemConfigurationFile

Просмотреть файл

@ -1,189 +0,0 @@
# System.TypeLoadException : Could not resolve type with token 0100010d from typeref (expected class 'System.Security.Cryptography.SHA512Cng'
MonoTests.System.Security.Cryptography.SHA512CngTest.Create
MonoTests.System.Security.Cryptography.SHA512CngTest.StaticInfo
MonoTests.System.Security.Cryptography.SHA512CngTest.FIPSCompliance_Test1
MonoTests.System.Security.Cryptography.SHA512CngTest.FIPSCompliance_Test2
MonoTests.System.Security.Cryptography.SHA512CngTest.FIPSCompliance_Test3
MonoTests.System.Security.Cryptography.SHA512CngTest.Create
MonoTests.System.Security.Cryptography.SHA512CngTest.SHA384TestBase.CreateIncorrect
MonoTests.System.Security.Cryptography.SHA512CngTest.SHA512TestBase.CreateIncorrect
MonoTests.System.Security.Cryptography.SHA512CngTest.SHA384TestBase.CreateInvalid
MonoTests.System.Security.Cryptography.SHA512CngTest.SHA512TestBase.CreateInvalid
MonoTests.System.Security.Cryptography.SHA512CngTest.CreateNull
MonoTests.System.Security.Cryptography.SHA512CngTest.StaticInfo
MonoTests.System.Security.Cryptography.SHA512CngTest.Create
MonoTests.System.Security.Cryptography.SHA512CngTest.SHA512TestBase.CreateNull
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.Clear
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.Clear2
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.NullStream
MonoTests.System.Security.Cryptography.SHA512CngTest.Disposable
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.InitializeDisposed
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.ComputeHash_ArrayNull
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.ComputeHash_ArrayNullIntInt
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.ComputeHash_OffsetNegative
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.ComputeHash_OffsetOverflow
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.ComputeHash_CountNegative
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.ComputeHash_CountOverflow
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformBlock_Disposed
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformBlock_InputBuffer_Null
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformBlock_InputOffset_Negative
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformBlock_InputOffset_Overflow
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformBlock_InputCount_Negative
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformBlock_InputCount_Overflow
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformBlock_OutputOffset_Negative
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformBlock_OutputOffset_Overflow
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformFinalBlock_Disposed
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputBuffer_Null
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputOffset_Negative
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputOffset_Overflow
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputCount_Negative
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputCount_Overflow
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformFinalBlock_Twice
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformFinalBlock_TransformBlock
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformFinalBlock_Twice_Initialize
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformFinalBlock_ReturnedBuffer
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.InputOutputIntersection
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.Hash_AfterInitialize_FirstTime
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.Hash_AfterInitialize_SecondTime
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.Hash_AfterTransformBlock
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.Hash_AfterTransformFinalBlock
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.Hash_NoExternalChanges
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.Hash_DisposedException
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.Hash_StateExeception
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.TransformBlock_OutputBuffer_Null
MonoTests.System.Security.Cryptography.SHA512CngTest.HashAlgorithmTestBase.Disposable
MonoTests.System.Security.Cryptography.SHA384CngTest.StaticInfo
MonoTests.System.Security.Cryptography.SHA384CngTest.SHA384TestBase.CreateNull
MonoTests.System.Security.Cryptography.SHA384CngTest.SHA384TestBase.CreateInvalid
MonoTests.System.Security.Cryptography.SHA384CngTest.SHA384TestBase.CreateIncorrec
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformFinalBlock_Twice_Initialize
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformFinalBlock_ReturnedBuffer
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputOffset_Overflow
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputOffset_Negative
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputCount_Overflow
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputCount_Negative
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputBuffer_Null
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformFinalBlock_Disposed
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformBlock_OutputOffset_Overflow
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformBlock_OutputOffset_Negative
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformBlock_OutputBuffer_Null
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformBlock_InputOffset_Overflow
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformBlock_InputOffset_Negative
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformBlock_InputCount_Overflow
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformBlock_InputCount_Negative
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformBlock_InputBuffer_Null
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.TransformBlock_Disposed
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.NullStream
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.InputOutputIntersection
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.InitializeDisposed
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.Hash_StateExeception
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.Hash_NoExternalChanges
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.Hash_DisposedException
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.Hash_AfterTransformFinalBlock
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.Hash_AfterTransformBlock
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.Hash_AfterInitialize_SecondTime
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.Disposable
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.ComputeHash_OffsetOverflow
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.ComputeHash_OffsetNegative
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.ComputeHash_CountOverflow
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.ComputeHash_CountNegative
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.ComputeHash_ArrayNullIntInt
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.ComputeHash_ArrayNull
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.Clear2
MonoTests.System.Security.Cryptography.SHA384CngTest.HashAlgorithmTestBase.Clear
MonoTests.System.Security.Cryptography.SHA384CngTest.FIPSCompliance_Test3
MonoTests.System.Security.Cryptography.SHA384CngTest.FIPSCompliance_Test2
MonoTests.System.Security.Cryptography.SHA384CngTest.FIPSCompliance_Test1
MonoTests.System.Security.Cryptography.SHA384CngTest.Create
MonoTests.System.Security.Cryptography.SHA256CngTest.StaticInfo
MonoTests.System.Security.Cryptography.SHA256CngTest.SHA256TestBase.CreateNull
MonoTests.System.Security.Cryptography.SHA256CngTest.SHA256TestBase.CreateInvalid
MonoTests.System.Security.Cryptography.SHA256CngTest.SHA256TestBase.CreateIncorrect
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformFinalBlock_Twice_Initialize
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformFinalBlock_ReturnedBuffer
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputOffset_Overflow
MonoTests.System.Security.Cryptography.SHA384CngTest.SHA384TestBase.CreateIncorrect
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputOffset_Negative
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputCount_Overflow
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputCount_Negative
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputBuffer_Null
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformFinalBlock_Disposed
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformBlock_OutputOffset_Overflow
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformBlock_OutputOffset_Negative
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformBlock_OutputBuffer_Null
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformBlock_InputOffset_Overflow
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformBlock_InputOffset_Negative
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformBlock_InputCount_Overflow
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformBlock_InputCount_Negative
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformBlock_InputBuffer_Null
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.TransformBlock_Disposed
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.NullStream
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.InputOutputIntersection
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.InitializeDisposed
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.Hash_StateExeception
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.Hash_NoExternalChanges
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.Hash_DisposedException
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.Hash_AfterTransformFinalBlock
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.Hash_AfterTransformBlock
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.Hash_AfterInitialize_SecondTime
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.Disposable
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.ComputeHash_OffsetOverflow
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.ComputeHash_OffsetNegative
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.ComputeHash_CountOverflow
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.ComputeHash_CountNegative
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.ComputeHash_ArrayNullIntInt
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.ComputeHash_ArrayNull
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.Clear2
MonoTests.System.Security.Cryptography.SHA256CngTest.HashAlgorithmTestBase.Clear
MonoTests.System.Security.Cryptography.SHA256CngTest.FIPSCompliance_Test3
MonoTests.System.Security.Cryptography.SHA256CngTest.FIPSCompliance_Test2
MonoTests.System.Security.Cryptography.SHA256CngTest.FIPSCompliance_Test1
MonoTests.System.Security.Cryptography.SHA256CngTest.Create
MonoTests.System.Security.Cryptography.SHA1CngTest.StaticInfo
MonoTests.System.Security.Cryptography.SHA1CngTest.SHA1TestBase.CreateUnknown
MonoTests.System.Security.Cryptography.SHA1CngTest.SHA1TestBase.CreateNull
MonoTests.System.Security.Cryptography.SHA1CngTest.SHA1TestBase.CreateIncorrect
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformFinalBlock_Twice_Initialize
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformFinalBlock_ReturnedBuffer
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputOffset_Overflow
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputOffset_Negative
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputCount_Overflow
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputCount_Negative
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformFinalBlock_InputBuffer_Null
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformFinalBlock_Disposed
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformBlock_OutputOffset_Overflow
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformBlock_OutputOffset_Negative
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformBlock_OutputBuffer_Null
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformBlock_InputOffset_Overflow
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformBlock_InputOffset_Negative
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformBlock_InputCount_Overflow
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformBlock_InputCount_Negative
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformBlock_InputBuffer_Null
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.TransformBlock_Disposed
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.NullStream
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.InputOutputIntersection
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.InitializeDisposed
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.Hash_StateExeception
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.Hash_NoExternalChanges
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.Hash_DisposedException
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.Hash_AfterTransformFinalBlock
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.Hash_AfterTransformBlock
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.Hash_AfterInitialize_SecondTime
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.Disposable
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.ComputeHash_OffsetOverflow
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.ComputeHash_OffsetNegative
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.ComputeHash_CountOverflow
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.ComputeHash_CountNegative
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.ComputeHash_ArrayNullIntInt
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.ComputeHash_ArrayNull
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.Clear2
MonoTests.System.Security.Cryptography.SHA1CngTest.HashAlgorithmTestBase.Clear
MonoTests.System.Security.Cryptography.SHA1CngTest.Create
MonoTests.System.Security.Cryptography.MD5Test.ComputeHashNull
MonoTests.System.Security.Cryptography.MD5Test.ComputeHashB
MonoTests.System.Security.Cryptography.MD5Test.ComputeHashA
# System.Security.Cryptography.CryptographicException was expected
MonoTests.System.Security.Cryptography.AesManagedTest.OFB_NotAllowed
MonoTests.System.Security.Cryptography.AesManagedTest.CFB_NotAllowed
MonoTests.System.Security.Cryptography.AesCryptoServiceProviderTest.CFB_TooBig

Просмотреть файл

@ -1,90 +0,0 @@
# System.TypeLoadException : Could not set up parent class, due to: Could not load type of field 'System.Configuration.ConfigurationSection:section_handler' (1) due to: Could not resolve type with token 01000051 from typeref
MonoTests.System.Transactions.TransactionScopeTest.TransactionScopeWithInvalidTimeSpanThrows
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction8a
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction8
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction6e
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction6d
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction6c
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction6b
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction6a
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction10b
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction10a
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction10
MonoTests.System.Transactions.EnlistTest.Vol2_Rollback
MonoTests.System.Transactions.EnlistTest.Vol2_Dur1_Fail5
MonoTests.System.Transactions.EnlistTest.Vol2_Dur1_Fail4
MonoTests.System.Transactions.EnlistTest.Vol2_Dur1_Fail3
MonoTests.System.Transactions.EnlistTest.Vol2_Dur1_Fail1
MonoTests.System.Transactions.EnlistTest.Vol2_Dur1
MonoTests.System.Transactions.EnlistTest.Vol2_Dur0_SPC
MonoTests.System.Transactions.EnlistTest.Vol2_Committed
MonoTests.System.Transactions.EnlistTest.Vol1_Rollback
MonoTests.System.Transactions.EnlistTest.Vol1_Dur0_Pspe1
MonoTests.System.Transactions.EnlistTest.Vol1_Dur0_Fail3
MonoTests.System.Transactions.EnlistTest.Vol1_Dur0_Fail2
MonoTests.System.Transactions.EnlistTest.Vol1_Dur0_Fail1
MonoTests.System.Transactions.EnlistTest.Vol1_Dur0_2PC
MonoTests.System.Transactions.EnlistTest.Vol1_Dur0
MonoTests.System.Transactions.EnlistTest.Vol1_Committed
MonoTests.System.Transactions.EnlistTest.Vol0_Dur1_Pspe1
MonoTests.System.Transactions.EnlistTest.Vol0_Dur1_Fail
MonoTests.System.Transactions.EnlistTest.Vol0_Dur1
MonoTests.System.Transactions.EnlistTest.Vol0_Dur0_Pspe2
MonoTests.System.Transactions.EnlistTest.Vol2SPC_Committed
MonoTests.System.Transactions.EnlistTest.Vol1SPC_Committed
MonoTests.System.Transactions.EnlistTest.Vol0_Dur0_Pspe1
MonoTests.System.Transactions.EnlistTest.TransactionDispose3
MonoTests.System.Transactions.EnlistTest.TransactionCompleted_Rollback
MonoTests.System.Transactions.EnlistTest.TransactionCompleted_Committed
# Expected: System.InvalidOperationException
# but was: System.TypeInitializationException : The type initializer for 'System.Transactions.TransactionScope' threw an exception.
MonoTests.System.Transactions.TransactionScopeTest.TransactionScopeCompleted3
MonoTests.System.Transactions.TransactionScopeTest.TransactionScopeCompleted2
MonoTests.System.Transactions.TransactionScopeTest.TransactionScopeCompleted1
# Ambient transaction exists (before)
# Expected: null
# But was: <System.Transactions.CommittableTransaction>
MonoTests.System.Transactions.TransactionScopeTest.TransactionScopeCommit
MonoTests.System.Transactions.TransactionScopeTest.TransactionScopeAbort
MonoTests.System.Transactions.TransactionScopeTest.RMFail2
MonoTests.System.Transactions.TransactionScopeTest.RMFail1
MonoTests.System.Transactions.TransactionScopeTest.NestedTransactionScope9
MonoTests.System.Transactions.TransactionScopeTest.NestedTransactionScope8a
MonoTests.System.Transactions.TransactionScopeTest.NestedTransactionScope8
MonoTests.System.Transactions.TransactionScopeTest.NestedTransactionScope7
MonoTests.System.Transactions.TransactionScopeTest.NestedTransactionScope6
MonoTests.System.Transactions.TransactionScopeTest.NestedTransactionScope5
MonoTests.System.Transactions.TransactionScopeTest.NestedTransactionScope4
MonoTests.System.Transactions.TransactionScopeTest.NestedTransactionScope3
MonoTests.System.Transactions.TransactionScopeTest.NestedTransactionScope2
MonoTests.System.Transactions.TransactionScopeTest.NestedTransactionScope13
MonoTests.System.Transactions.TransactionScopeTest.NestedTransactionScope12
MonoTests.System.Transactions.TransactionScopeTest.NestedTransactionScope10
MonoTests.System.Transactions.TransactionScopeTest.NestedTransactionScope1
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransactionRollback
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransactionCommit
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction5
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction4
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction3
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction2
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction16
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction15
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction14
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction13
MonoTests.System.Transactions.TransactionScopeTest.ExplicitTransaction1
# Expected: 1
# But was: 0
MonoTests.System.Transactions.EnlistTest.Vol2_Throwing_On_Second_Prepare
MonoTests.System.Transactions.EnlistTest.Vol2_Throwing_On_Rollback
MonoTests.System.Transactions.EnlistTest.Vol2_Throwing_On_First_Rollback_And_Second_Prepare
MonoTests.System.Transactions.EnlistTest.Vol2_Throwing_On_First_Prepare_And_Second_Rollback
MonoTests.System.Transactions.EnlistTest.Vol2_Throwing_On_First_Prepare
MonoTests.System.Transactions.EnlistTest.Vol2_Throwing_On_Commit
MonoTests.System.Transactions.EnlistTest.Vol2SPC_Throwing_On_Commit
MonoTests.System.Transactions.EnlistTest.Vol1SPC_Throwing_On_Commit
MonoTests.System.Transactions.EnlistTest.Vol1_Throwing_On_Rollback
MonoTests.System.Transactions.EnlistTest.Vol1_Throwing_On_Prepare
MonoTests.System.Transactions.EnlistTest.Vol1_Throwing_On_Commit

Просмотреть файл

@ -1,118 +0,0 @@
# System.Net.Test.Common.VirtualNetwork+VirtualNetworkConnectionBroken : Connection broken
# Created a mono issue for them: https://github.com/mono/mono/issues/15929
System.Net.Security.Tests.SslStreamStreamToStreamTest_BeginEnd.SslStream_StreamToStream_WriteAsync_ReadByte_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_BeginEnd.SslStream_StreamToStream_Authentication_IncorrectServerName_Fail
System.Net.Security.Tests.SslStreamStreamToStreamTest_BeginEnd.SslStream_StreamToStream_Dispose_Throws
System.Net.Security.Tests.SslStreamStreamToStreamTest_BeginEnd.SslStream_StreamToStream_WriteAsync_ReadAsync_Pending_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_BeginEnd.SslStream_StreamToStream_Successive_ClientWrite_Async_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_BeginEnd.SslStream_StreamToStream_Write_ReadByte_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_BeginEnd.SslStream_StreamToStream_EOFDuringFrameRead_ThrowsIOException
System.Net.Security.Tests.SslStreamStreamToStreamTest_BeginEnd.SslStream_StreamToStream_Successive_ClientWrite_Sync_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_BeginEnd.SslStream_StreamToStream_Authentication_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_BeginEnd.SslStream_StreamToStream_Successive_ClientWrite_WithZeroBytes_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_BeginEnd.SslStream_StreamToStream_LargeWrites_Sync_Success(randomizedData: True)
System.Net.Security.Tests.SslStreamStreamToStreamTest_BeginEnd.SslStream_StreamToStream_LargeWrites_Sync_Success(randomizedData: False)
System.Net.Security.Tests.ServerAllowNoEncryptionTest.ServerAllowNoEncryption_ClientRequireEncryption_ConnectWithEncryption
System.Net.Security.Tests.AsyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: Tls11, serverProtocols: null)
System.Net.Security.Tests.AsyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: None, serverProtocols: None)
System.Net.Security.Tests.AsyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: None, serverProtocols: null)
System.Net.Security.Tests.AsyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: Tls | Tls11 | Tls12, serverProtocols: null)
System.Net.Security.Tests.AsyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: Tls12)
System.Net.Security.Tests.AsyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: Tls | Tls11 | Tls12)
System.Net.Security.Tests.AsyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: Default)
System.Net.Security.Tests.AsyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: None)
System.Net.Security.Tests.AsyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: Tls11)
System.Net.Security.Tests.AsyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: Tls12, serverProtocols: null)
System.Net.Security.Tests.AsyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: null)
System.Net.Security.Tests.AsyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: Default, serverProtocols: null)
System.Net.Security.Tests.ServerAsyncAuthenticateTest.ServerAsyncAuthenticate_EachSupportedProtocol_Success(protocol: Tls12)
System.Net.Security.Tests.ServerAsyncAuthenticateTest.ServerAsyncAuthenticate_EachSupportedProtocol_Success(protocol: Ssl3)
System.Net.Security.Tests.ServerAsyncAuthenticateTest.ServerAsyncAuthenticate_EachSupportedProtocol_Success(protocol: Default)
System.Net.Security.Tests.ServerAsyncAuthenticateTest.ServerAsyncAuthenticate_EachSupportedProtocol_Success(protocol: Tls11)
System.Net.Security.Tests.ServerAsyncAuthenticateTest.ServerAsyncAuthenticate_EachSupportedProtocol_Success(protocol: Tls)
System.Net.Security.Tests.ServerAsyncAuthenticateTest.ServerAsyncAuthenticate_AllClientVsIndividualServerSupportedProtocols_Success(serverProtocol: Default)
System.Net.Security.Tests.ServerAsyncAuthenticateTest.ServerAsyncAuthenticate_AllClientVsIndividualServerSupportedProtocols_Success(serverProtocol: Tls11)
System.Net.Security.Tests.ServerAsyncAuthenticateTest.ServerAsyncAuthenticate_AllClientVsIndividualServerSupportedProtocols_Success(serverProtocol: Ssl3)
System.Net.Security.Tests.ServerAsyncAuthenticateTest.ServerAsyncAuthenticate_AllClientVsIndividualServerSupportedProtocols_Success(serverProtocol: Tls)
System.Net.Security.Tests.ServerAsyncAuthenticateTest.ServerAsyncAuthenticate_AllClientVsIndividualServerSupportedProtocols_Success(serverProtocol: Tls12)
System.Net.Security.Tests.SyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: Tls12)
System.Net.Security.Tests.SyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: None, serverProtocols: None)
System.Net.Security.Tests.SyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: Tls | Tls11 | Tls12)
System.Net.Security.Tests.SyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: Default)
System.Net.Security.Tests.SyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: Tls11, serverProtocols: null)
System.Net.Security.Tests.SyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: Tls11)
System.Net.Security.Tests.SyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: None, serverProtocols: null)
System.Net.Security.Tests.SyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: None)
System.Net.Security.Tests.SyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: Tls12, serverProtocols: null)
System.Net.Security.Tests.SyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: Default, serverProtocols: null)
System.Net.Security.Tests.SyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: null)
System.Net.Security.Tests.SyncSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: Tls | Tls11 | Tls12, serverProtocols: null)
System.Net.Security.Tests.SslStreamAlertsTest.SslStream_StreamToStream_DataAfterShutdown_Fail
System.Net.Security.Tests.SslStreamCredentialCacheTest.SslStream_SameCertUsedForClientAndServer_Ok
System.Net.Security.Tests.SslClientAuthenticationOptionsTest.ClientOptions_ServerOptions_NotMutatedDuringAuthentication
System.Net.Security.Tests.CertificateValidationClientServer.CertificateValidationClientServer_EndToEnd_Ok(useClientSelectionCallback: True)
System.Net.Security.Tests.CertificateValidationClientServer.CertificateValidationClientServer_EndToEnd_Ok(useClientSelectionCallback: False)
System.Net.Security.Tests.SslStreamNetworkStreamTest.SslStream_SendReceiveOverNetworkStream_Ok
System.Net.Security.Tests.ServerRequireEncryptionTest.ServerRequireEncryption_ClientAllowNoEncryption_ConnectWithEncryption
System.Net.Security.Tests.ServerRequireEncryptionTest.ServerRequireEncryption_ClientRequireEncryption_ConnectWithEncryption
System.Net.Security.Tests.SslStreamStreamToStreamTest_Sync.SslStream_StreamToStream_Dispose_Throws
System.Net.Security.Tests.SslStreamStreamToStreamTest_Sync.SslStream_StreamToStream_EOFDuringFrameRead_ThrowsIOException
System.Net.Security.Tests.SslStreamStreamToStreamTest_Sync.SslStream_StreamToStream_Authentication_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_Sync.SslStream_StreamToStream_Authentication_IncorrectServerName_Fail
System.Net.Security.Tests.SslStreamStreamToStreamTest_Sync.SslStream_StreamToStream_Successive_ClientWrite_WithZeroBytes_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_Sync.SslStream_StreamToStream_LargeWrites_Sync_Success(randomizedData: True)
System.Net.Security.Tests.SslStreamStreamToStreamTest_Sync.SslStream_StreamToStream_LargeWrites_Sync_Success(randomizedData: False)
System.Net.Security.Tests.SslStreamStreamToStreamTest_Sync.SslStream_StreamToStream_Successive_ClientWrite_Async_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_Sync.SslStream_StreamToStream_Write_ReadByte_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_Sync.SslStream_StreamToStream_WriteAsync_ReadAsync_Pending_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_Sync.SslStream_StreamToStream_Successive_ClientWrite_Sync_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_Sync.SslStream_StreamToStream_WriteAsync_ReadByte_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_Async.SslStream_StreamToStream_Authentication_IncorrectServerName_Fail
System.Net.Security.Tests.SslStreamStreamToStreamTest_Async.SslStream_StreamToStream_WriteAsync_ReadAsync_Pending_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_Async.SslStream_StreamToStream_Successive_ClientWrite_WithZeroBytes_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_Async.SslStream_StreamToStream_Authentication_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_Async.SslStream_StreamToStream_EOFDuringFrameRead_ThrowsIOException
System.Net.Security.Tests.SslStreamStreamToStreamTest_Async.SslStream_StreamToStream_Successive_ClientWrite_Sync_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_Async.SslStream_StreamToStream_LargeWrites_Sync_Success(randomizedData: False)
System.Net.Security.Tests.SslStreamStreamToStreamTest_Async.SslStream_StreamToStream_LargeWrites_Sync_Success(randomizedData: True)
System.Net.Security.Tests.SslStreamStreamToStreamTest_Async.SslStream_StreamToStream_Write_ReadByte_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_Async.SslStream_StreamToStream_Successive_ClientWrite_Async_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_Async.SslStream_StreamToStream_WriteAsync_ReadByte_Success
System.Net.Security.Tests.SslStreamStreamToStreamTest_Async.SslStream_StreamToStream_Dispose_Throws
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_EachSupportedProtocol_Success(protocol: Default)
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_EachSupportedProtocol_Success(protocol: Ssl3)
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_EachSupportedProtocol_Success(protocol: Tls11)
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_EachSupportedProtocol_Success(protocol: Tls)
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_EachSupportedProtocol_Success(protocol: Tls12)
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_AllServerAllClient_Success
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_AllServerVsIndividualClientSupportedProtocols_Success(clientProtocol: Tls11)
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_AllServerVsIndividualClientSupportedProtocols_Success(clientProtocol: Ssl3)
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_AllServerVsIndividualClientSupportedProtocols_Success(clientProtocol: Tls12)
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_AllServerVsIndividualClientSupportedProtocols_Success(clientProtocol: Tls)
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_AllServerVsIndividualClientSupportedProtocols_Success(clientProtocol: Default)
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_ServerRequireEncryption_ConnectWithEncryption
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_MismatchProtocols_Fails(serverProtocol: Tls12, clientProtocol: Tls, expectedException: typeof(System.Security.Authentication.AuthenticationException))
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_MismatchProtocols_Fails(serverProtocol: Tls11, clientProtocol: Tls, expectedException: typeof(System.Security.Authentication.AuthenticationException))
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_MismatchProtocols_Fails(serverProtocol: Tls12, clientProtocol: Tls11, expectedException: typeof(System.Security.Authentication.AuthenticationException))
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_SslStreamClientServerNone_UseStrongCryptoSet
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_IndividualServerVsAllClientSupportedProtocols_Success(serverProtocol: Tls12)
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_IndividualServerVsAllClientSupportedProtocols_Success(serverProtocol: Tls)
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_IndividualServerVsAllClientSupportedProtocols_Success(serverProtocol: Tls11)
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_IndividualServerVsAllClientSupportedProtocols_Success(serverProtocol: Ssl3)
System.Net.Security.Tests.ClientAsyncAuthenticateTest.ClientAsyncAuthenticate_IndividualServerVsAllClientSupportedProtocols_Success(serverProtocol: Default)
System.Net.Security.Tests.ApmSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: Tls | Tls11 | Tls12, serverProtocols: null)
System.Net.Security.Tests.ApmSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: Tls11, serverProtocols: null)
System.Net.Security.Tests.ApmSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: Tls | Tls11 | Tls12)
System.Net.Security.Tests.ApmSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: Tls11)
System.Net.Security.Tests.ApmSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: None)
System.Net.Security.Tests.ApmSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: None, serverProtocols: None)
System.Net.Security.Tests.ApmSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: None, serverProtocols: null)
System.Net.Security.Tests.ApmSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: Default, serverProtocols: null)
System.Net.Security.Tests.ApmSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: Tls12)
System.Net.Security.Tests.ApmSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: Default)
System.Net.Security.Tests.ApmSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: Tls12, serverProtocols: null)
System.Net.Security.Tests.ApmSslStreamSystemDefaultTest.ClientAndServer_OneOrBothUseDefault_Ok(clientProtocols: null, serverProtocols: null)
System.Net.Security.Tests.ClientDefaultEncryptionTest.ClientDefaultEncryption_ServerRequireEncryption_ConnectWithEncryption
System.Net.Security.Tests.ClientDefaultEncryptionTest.ClientDefaultEncryption_ServerAllowNoEncryption_ConnectWithEncryption
System.Net.Security.Tests.ServerAllowNoEncryptionTest.ServerAllowNoEncryption_ClientAllowNoEncryption_ConnectWithEncryption
KLASS:System.Net.Security.Tests.SslStreamSniTest

Просмотреть файл

@ -1,5 +0,0 @@
# blocks test app
KLASS:System.Threading.ThreadPools.Tests.ThreadPoolTests
# https://github.com/xamarin/maccore/issues/2296
KLASS:System.Tests.DateTimeTests

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше