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

AttributeArgumentForwarded.cs « TypeForwarding « Mono.Linker.Tests.Cases « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 171aad0b8b2fc921fe5d789e46ea948a78621ed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
using System;
using Mono.Linker.Tests.Cases.Expectations.Assertions;
using Mono.Linker.Tests.Cases.Expectations.Metadata;
using Mono.Linker.Tests.Cases.TypeForwarding.Dependencies;

namespace Mono.Linker.Tests.Cases.TypeForwarding
{
	// On .NET FW the built in compiler will drop the reference to the forwarder assembly when compiling the test assembly.
	// Use roslyn to give consistent behavior across platforms
	[SetupCSharpCompilerToUse ("csc")]

	// Actions:
	// link - This assembly, Forwarder.dll and Implementation.dll
	[SetupLinkerUserAction ("link")]
	[KeepTypeForwarderOnlyAssemblies ("false")]

	[SetupCompileBefore ("Forwarder.dll", new[] { "Dependencies/ReferenceImplementationLibrary.cs" }, defines: new[] { "INCLUDE_REFERENCE_IMPL" })]

	// After compiling the test case we then replace the reference impl with implementation + type forwarder
	[SetupCompileAfter ("Implementation.dll", new[] { "Dependencies/ImplementationLibrary.cs" })]
	[SetupCompileAfter ("Forwarder.dll", new[] { "Dependencies/ForwarderLibrary.cs" }, references: new[] { "Implementation.dll" })]

	[RemovedAssembly ("Forwarder.dll")]
	[KeptMemberInAssembly ("Implementation.dll", typeof (ImplementationLibrary))]
	[KeptMemberInAssembly ("Implementation.dll", typeof (ImplementationStruct))]
	class AttributeArgumentForwarded
	{
		static void Main ()
		{
			Test_Parameter_TypeRef ();
			Test_Parameter_TypeRefMDArray ();
			Test_Parameter_PointerTypeRef ();
			Test_Property_ArrayOfTypeRefs ();
			Test_Field_GenericOfTypeRefArray ();
			Test_Field_OpenGeneric ();
			Test_Field_ArrayOfPointerTypeRef ();
		}

		[Kept]
		[KeptAttributeAttribute (typeof (TestTypeAttribute))]
		[TestType (typeof (ImplementationLibrary))]
		public static void Test_Parameter_TypeRef ()
		{
		}

		[Kept]
		[KeptAttributeAttribute (typeof (TestTypeAttribute))]
		[TestType (typeof (ImplementationLibrary[,][]))]
		public static void Test_Parameter_TypeRefMDArray ()
		{
		}

		[Kept]
		[KeptAttributeAttribute (typeof (TestTypeAttribute))]
		[TestType (typeof (ImplementationStruct*))]
		public static void Test_Parameter_PointerTypeRef ()
		{
		}

		[Kept]
		[KeptAttributeAttribute (typeof (TestTypeAttribute))]
		[TestType (TestProperty = new object[] { typeof (ImplementationLibrary) })]
		public static void Test_Property_ArrayOfTypeRefs ()
		{
		}

		[Kept]
		[KeptAttributeAttribute (typeof (TestTypeAttribute))]
		[TestType (TestField = typeof (SomeGenericType<ImplementationLibrary[]>))]
		public static void Test_Field_GenericOfTypeRefArray ()
		{
		}


		[Kept]
		[KeptAttributeAttribute (typeof (TestTypeAttribute))]
		[TestType (TestField = typeof (SomeGenericType<>))]
		public static void Test_Field_OpenGeneric ()
		{
		}

		[Kept]
		[KeptAttributeAttribute (typeof (TestTypeAttribute))]
		[TestType (TestField = new object[] { typeof (ImplementationStruct*) })]
		public static void Test_Field_ArrayOfPointerTypeRef ()
		{
		}

		// This hits Roslyn bug https://github.com/dotnet/roslyn/issues/48765
		//[Kept]
		//[KeptAttributeAttribute (typeof (TestTypeAttribute))]
		//[TestType (TestField = new object[] { typeof (delegate*<int, void>) })]
		//public static void Test_Field_ArrayOfFunctionPointer ()
		//{
		//}
	}

	[KeptBaseType (typeof (Attribute))]
	public class TestTypeAttribute : Attribute
	{
		[Kept]
		public TestTypeAttribute ()
		{
		}

		[Kept]
		public TestTypeAttribute (Type arg)
		{
		}

		[KeptBackingField]
		[Kept]
		public object TestProperty { get; [Kept] set; }

		[Kept]
		public object TestField;
	}

	[Kept]
	public class SomeGenericType<T>
	{
	}
}