Sfoglia il codice sorgente

2004-01-27 Zoltan Varga <[email protected]>

	* AssemblyBuilderTest.cs (TestCustomAttributes): Remove
	KeyFileAttribute from the test, since it must point to a valid keyfile.

svn path=/trunk/mcs/; revision=22539
Zoltan Varga 22 anni fa
parent
commit
aa9cc67aef

+ 0 - 2
mcs/class/corlib/Test/System.Reflection.Emit/AssemblyBuilderTest.cs

@@ -397,8 +397,6 @@ public class AssemblyBuilderTest : Assertion
 
 		ab.SetCustomAttribute (new CustomAttributeBuilder (typeof (AssemblyVersionAttribute).GetConstructor (new Type [] { typeof (string) }), new object [] { "1.2.3.4"}));
 
-		ab.SetCustomAttribute (new CustomAttributeBuilder (typeof (AssemblyKeyFileAttribute).GetConstructor (new Type [] { typeof (string) }), new object [] { "foo"}));
-
 		ab.SetCustomAttribute (new CustomAttributeBuilder (typeof (AssemblyCultureAttribute).GetConstructor (new Type [] { typeof (string) }), new object [] { "bar"}));
 
 		ab.SetCustomAttribute (new CustomAttributeBuilder (typeof (AssemblyAlgorithmIdAttribute).GetConstructor (new Type [] { typeof (AssemblyHashAlgorithm) }), new object [] { AssemblyHashAlgorithm.MD5 }));

+ 5 - 0
mcs/class/corlib/Test/System.Reflection.Emit/ChangeLog

@@ -1,3 +1,8 @@
+2004-01-27  Zoltan Varga  <[email protected]>
+
+	* AssemblyBuilderTest.cs (TestCustomAttributes): Remove 
+	KeyFileAttribute from the test, since it must point to a valid keyfile.
+
 2004-01-09  Nick Drochak <[email protected]>
 
 	* TypeBuilderTest.cs (TestEnums): Fix build with csc.