Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'linker/Tests/Mono.Linker.Tests.Cases.Expectations/Assertions/SkipPeVerifyAttribute.cs')
-rw-r--r--linker/Tests/Mono.Linker.Tests.Cases.Expectations/Assertions/SkipPeVerifyAttribute.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/linker/Tests/Mono.Linker.Tests.Cases.Expectations/Assertions/SkipPeVerifyAttribute.cs b/linker/Tests/Mono.Linker.Tests.Cases.Expectations/Assertions/SkipPeVerifyAttribute.cs
new file mode 100644
index 000000000..eaccabd25
--- /dev/null
+++ b/linker/Tests/Mono.Linker.Tests.Cases.Expectations/Assertions/SkipPeVerifyAttribute.cs
@@ -0,0 +1,25 @@
+using System;
+
+namespace Mono.Linker.Tests.Cases.Expectations.Assertions {
+
+ public enum SkipPeVerifyForToolchian
+ {
+ Pedump
+ }
+
+ [AttributeUsage (AttributeTargets.Class, AllowMultiple = true)]
+ public class SkipPeVerifyAttribute : BaseExpectedLinkedBehaviorAttribute
+ {
+ public SkipPeVerifyAttribute ()
+ {
+ }
+
+ public SkipPeVerifyAttribute (SkipPeVerifyForToolchian toolchain)
+ {
+ }
+
+ public SkipPeVerifyAttribute (string assemblyName)
+ {
+ }
+ }
+}