Selaa lähdekoodia

2004-09-13 Sebastien Pouliot <[email protected]>

	* Makefile: Added /nowarn:618 when compiling unit test assembly to
	remove nunit obsolete warnings.
	* System.Data.dll.sources: Added System.Data.Common.DbConnectionOptions
	(NET_2_0) and System.Data.Common/PermissionHelper to the build.
	* System.Data_test.dll.sources: Added {DBData|Odbc|OleDb|SqlClient}
	PermissionAttribute unit tests to the build.

svn path=/trunk/mcs/; revision=33833
Sebastien Pouliot 21 vuotta sitten
vanhempi
sitoutus
9003dc76ec

+ 9 - 0
mcs/class/System.Data/ChangeLog

@@ -1,3 +1,12 @@
+2004-09-13  Sebastien Pouliot  <[email protected]>
+
+	* Makefile: Added /nowarn:618 when compiling unit test assembly to 
+	remove nunit obsolete warnings.
+	* System.Data.dll.sources: Added System.Data.Common.DbConnectionOptions
+	(NET_2_0) and System.Data.Common/PermissionHelper to the build.
+	* System.Data_test.dll.sources: Added {DBData|Odbc|OleDb|SqlClient}
+	PermissionAttribute unit tests to the build.
+
 2004-08-25  Nick Drochak  <[email protected]>
 
 	* Makefile: Cut down the the build noise.

+ 1 - 1
mcs/class/System.Data/Makefile

@@ -19,7 +19,7 @@ LIB_MCS_FLAGS = \
 	/r:System.EnterpriseServices.dll 	\
 	/r:Mono.Data.Tds.dll
 
-TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
+TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) /nowarn:618
 
 EXTRA_DISTFILES = \
 	TODO					\

+ 2 - 0
mcs/class/System.Data/System.Data.dll.sources

@@ -145,6 +145,7 @@ System.Data.Common/DbCommand.cs
 System.Data.Common/DbCommandOptionalFeatures.cs
 System.Data.Common/DbCommandSet.cs
 System.Data.Common/DbConnection.cs
+System.Data.Common/DbConnectionOptions.cs
 System.Data.Common/DbConnectionString.cs
 System.Data.Common/DbDataAdapter.cs
 System.Data.Common/DbDataPermissionAttribute.cs
@@ -166,6 +167,7 @@ System.Data.Common/DbTransaction.cs
 System.Data.Common/FieldNameLookup.cs
 System.Data.Common/GroupByBehavior.cs
 System.Data.Common/IdentifierCase.cs
+System.Data.Common/PermissionHelper.cs
 System.Data.Common/RecordCache.cs
 System.Data.Common/RowUpdatedEventArgs.cs
 System.Data.Common/RowUpdatingEventArgs.cs

+ 4 - 0
mcs/class/System.Data/System.Data_test.dll.sources

@@ -34,4 +34,8 @@ System.Data/DataRelationCollectionTest.cs
 System.Data/DataTableCollectionTest.cs
 System.Data.Common/DataColumnMappingCollectionTest.cs
 System.Data.Common/DataTableMappingCollectionTest.cs
+System.Data.Common/DBDataPermissionAttributeTest.cs
+System.Data.Odbc/OdbcPermissionAttributeTest.cs
+System.Data.OleDb/OleDbPermissionAttributeTest.cs
 System.Data.SqlClient/SqlConnectionTest.cs
+System.Data.SqlClient/SqlClientPermissionAttributeTest.cs