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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmcs/class/corlib/System.Reflection.Emit/common.src23
-rw-r--r--mcs/class/corlib/System.Reflection/common.src25
-rw-r--r--mcs/tests/Makefile2
-rw-r--r--mcs/tests/test-296.cs14
4 files changed, 1 insertions, 63 deletions
diff --git a/mcs/class/corlib/System.Reflection.Emit/common.src b/mcs/class/corlib/System.Reflection.Emit/common.src
deleted file mode 100755
index 569a9d60748..00000000000
--- a/mcs/class/corlib/System.Reflection.Emit/common.src
+++ /dev/null
@@ -1,23 +0,0 @@
-AssemblyBuilder.cs
-AssemblyBuilderAccess.cs
-ConstructorBuilder.cs
-EventToken.cs
-FieldToken.cs
-FlowControl.cs
-ILGenerator.cs
-Label.cs
-MethodToken.cs
-ModuleBuilder.cs
-OpCode.cs
-OpCodes.cs
-OpCodeType.cs
-OperandType.cs
-PackingSize.cs
-ParameterToken.cs
-PEFileKinds.cs
-PropertyToken.cs
-SignatureToken.cs
-StackBehaviour.cs
-StringToken.cs
-TypeBuilder.cs
-TypeToken.cs
diff --git a/mcs/class/corlib/System.Reflection/common.src b/mcs/class/corlib/System.Reflection/common.src
deleted file mode 100644
index 022b6768fcc..00000000000
--- a/mcs/class/corlib/System.Reflection/common.src
+++ /dev/null
@@ -1,25 +0,0 @@
-Assembly.cs
-AssemblyNameFlags.cs
-BindingFlags.cs
-CallingConventions.cs
-ConstructorInfo.cs
-DefaultMemberAttribute.cs
-EventAttributes.cs
-EventInfo.cs
-FieldAttributes.cs
-FieldInfo.cs
-ICustomAttributeProvider.cs
-MemberFilter.cs
-MemberInfo.cs
-MemberTypes.cs
-MethodAttributes.cs
-MethodBase.cs
-MethodImplAttributes.cs
-MethodInfo.cs
-Module.cs
-ParameterAttributes.cs
-PropertyAttributes.cs
-PropertyInfo.cs
-ResourceAttributes.cs
-ResourceLocation.cs
-TypeAttributes.cs
diff --git a/mcs/tests/Makefile b/mcs/tests/Makefile
index fb21c3df68f..dc5a8e99d59 100644
--- a/mcs/tests/Makefile
+++ b/mcs/tests/Makefile
@@ -45,7 +45,7 @@ TEST_SOURCES = \
test-261 test-262 test-263 test-264 test-265 test-266 test-267 test-268 test-269 test-270 \
test-271 test-272 test-273 test-274 test-275 test-276 test-277 test-278 test-279 test-280 \
test-281 test-282 test-283 test-284 test-285 test-286 test-288 test-289 test-290 \
- test-291 test-292 test-293 test-295 test-296 \
+ test-291 test-292 test-293 test-295 \
cls-test-0 cls-test-1 cls-test-2 cls-test-3 cls-test-5 cls-test-6 cls-test-7 cls-test-10 \
cls-test-11 cls-test-14 cls-test-15 cls-test-16 \
mtest-1-dll mtest-1-exe
diff --git a/mcs/tests/test-296.cs b/mcs/tests/test-296.cs
deleted file mode 100644
index b5954434b18..00000000000
--- a/mcs/tests/test-296.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-
-public class GetElementTypeTest {
- static int Main (string[] args) {
- GetElementTypeTest me = new GetElementTypeTest ();
- Type t = me.GetType ();
- Type elementt = t.GetElementType ();
-
- if (elementt != null)
- return 1;
- return 0;
- }
-}
-