From: Alexander Köplinger Date: Tue, 20 Dec 2016 18:29:39 +0000 (+0100) Subject: [bcl] Rename aot_hybrid profile to testing_aot_hybrid X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=342d23b74d8bd184584d00ef3336e399542ea31f;p=mono.git [bcl] Rename aot_hybrid profile to testing_aot_hybrid --- diff --git a/configure.ac b/configure.ac index 059bcff7bf1..2b5424a8a66 100644 --- a/configure.ac +++ b/configure.ac @@ -793,16 +793,16 @@ AC_MSG_RESULT($csc_compiler) # Set the build profiles and options before things which use them # -AC_ARG_WITH(profile4_x, [ --with-profile4_x=yes,no If you want to install the 4.x FX (defaults to yes)], [], [with_profile4_x=default]) -AC_ARG_WITH(monodroid, [ --with-monodroid=yes,no If you want to build the MonoDroid assemblies (defaults to no)], [], [with_monodroid=default]) -AC_ARG_WITH(monotouch, [ --with-monotouch=yes,no If you want to build the Xamarin.iOS assemblies (defaults to no)], [], [with_monotouch=default]) -AC_ARG_WITH(monotouch_watch, [ --with-monotouch_watch=yes,no If you want to build the Xamarin.WatchOS assemblies (defaults to no)],[], [with_monotouch_watch=default]) -AC_ARG_WITH(monotouch_tv, [ --with-monotouch_tv=yes,no If you want to build the Xamarin.TVOS assemblies (defaults to no)], [], [with_monotouch_tv=default]) -AC_ARG_WITH(bitcode, [ --with-bitcode=yes,no If bitcode is enabled (defaults to no)], [], [with_bitcode=default]) -AC_ARG_WITH(xammac, [ --with-xammac=yes,no If you want to build the Xamarin.Mac assemblies (defaults to no)], [], [with_xammac=default]) -AC_ARG_WITH(aot_hybrid, [ --with-aot_hybrid=yes,no If you want to build the aot_hybrid assemblies (defaults to no)], [], [with_aot_hybrid=default]) -AC_ARG_WITH(testing_aot_full,[ --with-testing_aot_full=yes,no If you want to build the testing_aot_full assemblies (defaults to no)],[], [with_testing_aot_full=default]) -AC_ARG_WITH(xbox, [ --with-xbox=yes,no If you want to build the Xbox assemblies (defaults to no)], [], [with_xbox=default]) +AC_ARG_WITH(profile4_x, [ --with-profile4_x=yes,no If you want to install the 4.x FX (defaults to yes)], [], [with_profile4_x=default]) +AC_ARG_WITH(monodroid, [ --with-monodroid=yes,no If you want to build the MonoDroid assemblies (defaults to no)], [], [with_monodroid=default]) +AC_ARG_WITH(monotouch, [ --with-monotouch=yes,no If you want to build the Xamarin.iOS assemblies (defaults to no)], [], [with_monotouch=default]) +AC_ARG_WITH(monotouch_watch, [ --with-monotouch_watch=yes,no If you want to build the Xamarin.WatchOS assemblies (defaults to no)], [], [with_monotouch_watch=default]) +AC_ARG_WITH(monotouch_tv, [ --with-monotouch_tv=yes,no If you want to build the Xamarin.TVOS assemblies (defaults to no)], [], [with_monotouch_tv=default]) +AC_ARG_WITH(bitcode, [ --with-bitcode=yes,no If bitcode is enabled (defaults to no)], [], [with_bitcode=default]) +AC_ARG_WITH(xammac, [ --with-xammac=yes,no If you want to build the Xamarin.Mac assemblies (defaults to no)], [], [with_xammac=default]) +AC_ARG_WITH(testing_aot_hybrid, [ --with-testing_aot_hybrid=yes,no If you want to build the testing_aot_hybrid assemblies (defaults to no)], [], [with_testing_aot_hybrid=default]) +AC_ARG_WITH(testing_aot_full, [ --with-testing_aot_full=yes,no If you want to build the testing_aot_full assemblies (defaults to no)], [], [with_testing_aot_full=default]) +AC_ARG_WITH(xbox, [ --with-xbox=yes,no If you want to build the Xbox assemblies (defaults to no)], [], [with_xbox=default]) AC_ARG_WITH(runtime_preset, [ --with-runtime_preset=net_4_x,all,aot,hybridaot,fullaot,bitcode Which default profile to build (defaults to net_4_x)], [], [with_runtime_preset=net_4_x]) @@ -818,7 +818,7 @@ with_monotouch_default=no with_monotouch_watch_default=no with_monotouch_tv_default=no with_xammac_default=no -with_aot_hybrid_default=no +with_testing_aot_hybrid_default=no with_testing_aot_full_default=no with_xbox_default=no @@ -869,8 +869,8 @@ elif test x$with_runtime_preset = xbitcode; then AOT_RUN_FLAGS="--llvmonly" elif test x$with_runtime_preset = xhybridaot; then DISABLE_MCS_DOCS_default=yes - with_aot_hybrid_default=yes - TEST_PROFILE=aot_hybrid + with_testing_aot_hybrid_default=yes + TEST_PROFILE=testing_aot_hybrid mono_feature_disable_com='yes' mono_feature_disable_remoting='yes' @@ -919,8 +919,8 @@ fi if test "x$with_xammac" = "xdefault"; then with_xammac=$with_xammac_default fi -if test "x$with_aot_hybrid" = "xdefault"; then - with_aot_hybrid=$with_aot_hybrid_default +if test "x$with_testing_aot_hybrid" = "xdefault"; then + with_testing_aot_hybrid=$with_testing_aot_hybrid_default fi if test "x$with_testing_aot_full" = "xdefault"; then with_testing_aot_full=$with_testing_aot_full_default @@ -937,10 +937,10 @@ AM_CONDITIONAL(INSTALL_MONOTOUCH_WATCH, [test "x$with_monotouch_watch" != "xno"] AM_CONDITIONAL(INSTALL_MONOTOUCH_TV, [test "x$with_monotouch_tv" != "xno"]) AM_CONDITIONAL(BITCODE, test "x$with_bitcode" = "xyes") AM_CONDITIONAL(INSTALL_XAMMAC, [test "x$with_xammac" != "xno"]) -AM_CONDITIONAL(INSTALL_AOT_HYBRID, [test "x$with_aot_hybrid" != "xno"]) +AM_CONDITIONAL(INSTALL_TESTING_AOT_HYBRID, [test "x$with_testing_aot_hybrid" != "xno"]) AM_CONDITIONAL(INSTALL_TESTING_AOT_FULL, [test "x$with_testing_aot_full" != "xno"]) -AC_SUBST(INSTALL_AOT_HYBRID) +AC_SUBST(INSTALL_TESTING_AOT_HYBRID) AC_SUBST(INSTALL_TESTING_AOT_FULL) default_profile=net_4_x @@ -953,8 +953,8 @@ fi if test -z "$INSTALL_XAMMAC_TRUE"; then : default_profile=xammac fi -if test -z "$INSTALL_AOT_HYBRID_TRUE"; then : - default_profile=aot_hybrid +if test -z "$INSTALL_TESTING_AOT_HYBRID_TRUE"; then : + default_profile=testing_aot_hybrid fi if test -z "$INSTALL_TESTING_AOT_FULL_TRUE"; then : default_profile=testing_aot_full @@ -4499,7 +4499,7 @@ echo " Xamarin.WatchOS: $with_monotouch_watch Xamarin.TVOS: $with_monotouch_tv Xamarin.Mac: $with_xammac - AOT Hybrid: $with_aot_hybrid + AOT Hybrid: $with_testing_aot_hybrid AOT Full: $with_testing_aot_full JNI support: $jdk_headers_found libgdiplus: $libgdiplus_msg diff --git a/mcs/Makefile b/mcs/Makefile index 14b5121e0a1..cba9589ad08 100644 --- a/mcs/Makefile +++ b/mcs/Makefile @@ -14,7 +14,7 @@ monotouch_runtime_SUBDIRS := build class monotouch_watch_runtime_SUBDIRS := build class monotouch_tv_runtime_SUBDIRS := build class xammac_SUBDIRS := build class -aot_hybrid_SUBDIRS := build class +testing_aot_hybrid_SUBDIRS := build class testing_aot_full_SUBDIRS := build class binary_reference_assemblies_SUBDIRS := build class net_4_x_SUBDIRS := build class nunit24 ilasm tools tests errors docs mcs class/aot-compiler packages @@ -72,7 +72,7 @@ $(_boot_:%=profile-do--monotouch_watch_runtime--%): profile-do--monotouch_watch $(_boot_:%=profile-do--monotouch_tv_runtime--%): profile-do--monotouch_tv_runtime--%: profile-do--build--% $(_boot_:%=profile-do--xammac--%): profile-do--xammac--%: profile-do--build--% $(_boot_:%=profile-do--xammac_net_4_5--%): profile-do--xammac_net_4_5--%: profile-do--build--% -$(_boot_:%=profile-do--aot_hybrid--%): profile-do--aot_hybrid--%: profile-do--build--% +$(_boot_:%=profile-do--testing_aot_hybrid--%): profile-do--testing_aot_hybrid--%: profile-do--build--% $(_boot_:%=profile-do--testing_aot_full--%): profile-do--testing_aot_full--%: profile-do--build--% $(_boot_:%=profile-do--xbox--%): profile-do--xbox--%: profile-do--build--% $(_boot_:%=profile-do--build--%): profile-do--build--%: profile-do--basic--% diff --git a/mcs/build/profiles/aot_hybrid.make b/mcs/build/profiles/aot_hybrid.make deleted file mode 100644 index 97ae3b2c348..00000000000 --- a/mcs/build/profiles/aot_hybrid.make +++ /dev/null @@ -1,36 +0,0 @@ -#! -*- makefile -*- - -BOOTSTRAP_PROFILE = build - -BOOTSTRAP_MCS = MONO_PATH="$(topdir)/class/lib/$(BOOTSTRAP_PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(INTERNAL_CSC) -MCS = $(BOOTSTRAP_MCS) - -# Use system resgen as we don't want local System.Windows.Forms dependency -RESGEN = resgen2 - -profile-check: - @: - -DEFAULT_REFERENCES = -r:$(topdir)/class/lib/$(PROFILE)/mscorlib.dll - -PROFILE_MCS_FLAGS = \ - -d:NET_1_1 \ - -d:NET_2_0 \ - -d:NET_2_1 \ - -d:MOBILE,MOBILE_LEGACY \ - -d:MOBILE_DYNAMIC \ - -d:NET_3_5 \ - -d:NET_4_0 \ - -d:NET_4_5 \ - -d:MONO \ - -d:NETSTANDARD \ - -nowarn:1699 \ - -nostdlib \ - $(DEFAULT_REFERENCES) \ - $(PLATFORM_DEBUG_FLAGS) - -FRAMEWORK_VERSION = 2.1 - -NO_INSTALL = yes -MOBILE_DYNAMIC = yes -MOBILE_PROFILE = yes \ No newline at end of file diff --git a/mcs/build/profiles/testing_aot_hybrid.make b/mcs/build/profiles/testing_aot_hybrid.make new file mode 100644 index 00000000000..97ae3b2c348 --- /dev/null +++ b/mcs/build/profiles/testing_aot_hybrid.make @@ -0,0 +1,36 @@ +#! -*- makefile -*- + +BOOTSTRAP_PROFILE = build + +BOOTSTRAP_MCS = MONO_PATH="$(topdir)/class/lib/$(BOOTSTRAP_PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(INTERNAL_CSC) +MCS = $(BOOTSTRAP_MCS) + +# Use system resgen as we don't want local System.Windows.Forms dependency +RESGEN = resgen2 + +profile-check: + @: + +DEFAULT_REFERENCES = -r:$(topdir)/class/lib/$(PROFILE)/mscorlib.dll + +PROFILE_MCS_FLAGS = \ + -d:NET_1_1 \ + -d:NET_2_0 \ + -d:NET_2_1 \ + -d:MOBILE,MOBILE_LEGACY \ + -d:MOBILE_DYNAMIC \ + -d:NET_3_5 \ + -d:NET_4_0 \ + -d:NET_4_5 \ + -d:MONO \ + -d:NETSTANDARD \ + -nowarn:1699 \ + -nostdlib \ + $(DEFAULT_REFERENCES) \ + $(PLATFORM_DEBUG_FLAGS) + +FRAMEWORK_VERSION = 2.1 + +NO_INSTALL = yes +MOBILE_DYNAMIC = yes +MOBILE_PROFILE = yes \ No newline at end of file diff --git a/mcs/class/Makefile b/mcs/class/Makefile index 4bcc3f696b6..33c8b27cb0b 100644 --- a/mcs/class/Makefile +++ b/mcs/class/Makefile @@ -89,7 +89,7 @@ testing_aot_full_dirs := \ Mono.Simd \ $(pcl_facade_dirs) -aot_hybrid_dirs := \ +testing_aot_hybrid_dirs := \ $(mobile_common_dirs) \ Mono.CompilerServices.SymbolWriter \ Mono.Simd \ @@ -335,7 +335,7 @@ monotouch_runtime_SUBDIRS := $(monotouch_runtime_dirs) monotouch_watch_runtime_SUBDIRS := $(monotouch_watch_runtime_dirs) monotouch_tv_runtime_SUBDIRS := $(monotouch_tv_runtime_dirs) testing_aot_full_SUBDIRS := $(testing_aot_full_dirs) -aot_hybrid_SUBDIRS := $(aot_hybrid_dirs) +testing_aot_hybrid_SUBDIRS := $(testing_aot_hybrid_dirs) xammac_SUBDIRS := $(xammac_dirs) xammac_net_4_5_SUBDIRS := $(xammac_4_5_dirs) binary_reference_assemblies_SUBDIRS := reference-assemblies @@ -347,7 +347,7 @@ xbox_SUBDIRS := $(xbox_dirs) include ../build/rules.make -SUBDIRS = $(testing_aot_full_dirs) $(aot_hybrid_dirs) $(monotouch_dirs) $(monodroid_dirs) $(xammac_dirs) $(net_4_x_dirs) $(net_4_x_parallel_dirs) $(xammac_net_4_5_SUBDIRS) +SUBDIRS = $(testing_aot_full_dirs) $(testing_aot_hybrid_dirs) $(monotouch_dirs) $(monodroid_dirs) $(xammac_dirs) $(net_4_x_dirs) $(net_4_x_parallel_dirs) $(xammac_net_4_5_SUBDIRS) DIST_ONLY_SUBDIRS = dlr aot-compiler reference-assemblies $(xbuild_4_0_dirs) Microsoft.NuGet.Build.Tasks diff --git a/mcs/class/Mono.Security/aot_hybrid_Mono.Security.dll.sources b/mcs/class/Mono.Security/aot_hybrid_Mono.Security.dll.sources deleted file mode 100644 index 87eaa009cd8..00000000000 --- a/mcs/class/Mono.Security/aot_hybrid_Mono.Security.dll.sources +++ /dev/null @@ -1,5 +0,0 @@ -#include mobile_Mono.Security.dll.sources -./Mono.Security.Cryptography/ARC4Managed.cs -./Mono.Security.Cryptography/MD2Managed.cs -./Mono.Security.Cryptography/MD4Managed.cs -./Mono.Security.Cryptography/SHA224Managed.cs diff --git a/mcs/class/Mono.Security/testing_aot_hybrid_Mono.Security.dll.sources b/mcs/class/Mono.Security/testing_aot_hybrid_Mono.Security.dll.sources new file mode 100644 index 00000000000..87eaa009cd8 --- /dev/null +++ b/mcs/class/Mono.Security/testing_aot_hybrid_Mono.Security.dll.sources @@ -0,0 +1,5 @@ +#include mobile_Mono.Security.dll.sources +./Mono.Security.Cryptography/ARC4Managed.cs +./Mono.Security.Cryptography/MD2Managed.cs +./Mono.Security.Cryptography/MD4Managed.cs +./Mono.Security.Cryptography/SHA224Managed.cs diff --git a/mcs/class/System.Core/aot_hybrid_System.Core.dll.sources b/mcs/class/System.Core/aot_hybrid_System.Core.dll.sources deleted file mode 100644 index 11a92dbb1d2..00000000000 --- a/mcs/class/System.Core/aot_hybrid_System.Core.dll.sources +++ /dev/null @@ -1,17 +0,0 @@ -#include common_System.Core.dll.sources -#include dynamic_System.Core.dll.sources - -System.Security.Cryptography/AesCryptoServiceProvider.cs -System.Security.Cryptography/AesTransform.cs -System.Security.Cryptography/MD5Cng.cs -System.Security.Cryptography/SHA1Cng.cs -System.Security.Cryptography/SHA256Cng.cs -System.Security.Cryptography/SHA256CryptoServiceProvider.cs -System.Security.Cryptography/SHA384Cng.cs -System.Security.Cryptography/SHA384CryptoServiceProvider.cs -System.Security.Cryptography/SHA512Cng.cs -System.Security.Cryptography/SHA512CryptoServiceProvider.cs - -../referencesource/System.Core/System/Security/Cryptography/AesManaged.cs -../referencesource/System.Core/System/Security/Cryptography/ECDiffieHellman.cs -../referencesource/System.Core/System/Security/Cryptography/ECKeyXmlFormat.cs diff --git a/mcs/class/System.Core/testing_aot_hybrid_System.Core.dll.sources b/mcs/class/System.Core/testing_aot_hybrid_System.Core.dll.sources new file mode 100644 index 00000000000..11a92dbb1d2 --- /dev/null +++ b/mcs/class/System.Core/testing_aot_hybrid_System.Core.dll.sources @@ -0,0 +1,17 @@ +#include common_System.Core.dll.sources +#include dynamic_System.Core.dll.sources + +System.Security.Cryptography/AesCryptoServiceProvider.cs +System.Security.Cryptography/AesTransform.cs +System.Security.Cryptography/MD5Cng.cs +System.Security.Cryptography/SHA1Cng.cs +System.Security.Cryptography/SHA256Cng.cs +System.Security.Cryptography/SHA256CryptoServiceProvider.cs +System.Security.Cryptography/SHA384Cng.cs +System.Security.Cryptography/SHA384CryptoServiceProvider.cs +System.Security.Cryptography/SHA512Cng.cs +System.Security.Cryptography/SHA512CryptoServiceProvider.cs + +../referencesource/System.Core/System/Security/Cryptography/AesManaged.cs +../referencesource/System.Core/System/Security/Cryptography/ECDiffieHellman.cs +../referencesource/System.Core/System/Security/Cryptography/ECKeyXmlFormat.cs diff --git a/mcs/class/System.Data/aot_hybrid_System.Data.dll.sources b/mcs/class/System.Data/aot_hybrid_System.Data.dll.sources deleted file mode 100644 index bbc860b8cd7..00000000000 --- a/mcs/class/System.Data/aot_hybrid_System.Data.dll.sources +++ /dev/null @@ -1 +0,0 @@ -#include mobile_System.Data.dll.sources diff --git a/mcs/class/System.Data/aot_hybrid_System.Data_test.dll.exclude.sources b/mcs/class/System.Data/aot_hybrid_System.Data_test.dll.exclude.sources deleted file mode 100644 index 0022a9e9f1b..00000000000 --- a/mcs/class/System.Data/aot_hybrid_System.Data_test.dll.exclude.sources +++ /dev/null @@ -1,18 +0,0 @@ -System.Data.Odbc/OdbcCommandBuilderTest.cs -System.Data.Odbc/OdbcCommandTest.cs -System.Data.Odbc/OdbcConnectionStringBuilderTest.cs -System.Data.Odbc/OdbcConnectionTest.cs -System.Data.Odbc/OdbcDataAdapterTest.cs -System.Data.Odbc/OdbcDataReaderTest.cs -System.Data.Odbc/OdbcMetaDataCollectionNamesTest.cs -System.Data.Odbc/OdbcParameterCollectionTest.cs -System.Data.Odbc/OdbcParameterTest.cs -System.Data.Odbc/OdbcPermissionAttributeTest.cs -System.Data.Odbc/OdbcPermissionTest.cs -System.Data.OleDb/OleDbCommandTest.cs -System.Data.OleDb/OleDbConnectionTest.cs -System.Data.OleDb/OleDbDataAdapterTest.cs -System.Data.OleDb/OleDbMetaDataCollectionNamesTest.cs -System.Data.OleDb/OleDbParameterCollectionTest.cs -System.Data.OleDb/OleDbPermissionAttributeTest.cs -System.Data.OleDb/OleDbPermissionTest.cs diff --git a/mcs/class/System.Data/app_test_aot_hybrid.config b/mcs/class/System.Data/app_test_aot_hybrid.config deleted file mode 100644 index 4f315973f1e..00000000000 --- a/mcs/class/System.Data/app_test_aot_hybrid.config +++ /dev/null @@ -1,48 +0,0 @@ - - - -
-
- - - - - - - - - - - - - - - - - - - - diff --git a/mcs/class/System.Data/testing_aot_hybrid_System.Data.dll.sources b/mcs/class/System.Data/testing_aot_hybrid_System.Data.dll.sources new file mode 100644 index 00000000000..bbc860b8cd7 --- /dev/null +++ b/mcs/class/System.Data/testing_aot_hybrid_System.Data.dll.sources @@ -0,0 +1 @@ +#include mobile_System.Data.dll.sources diff --git a/mcs/class/System.Data/testing_aot_hybrid_System.Data_test.dll.exclude.sources b/mcs/class/System.Data/testing_aot_hybrid_System.Data_test.dll.exclude.sources new file mode 100644 index 00000000000..0022a9e9f1b --- /dev/null +++ b/mcs/class/System.Data/testing_aot_hybrid_System.Data_test.dll.exclude.sources @@ -0,0 +1,18 @@ +System.Data.Odbc/OdbcCommandBuilderTest.cs +System.Data.Odbc/OdbcCommandTest.cs +System.Data.Odbc/OdbcConnectionStringBuilderTest.cs +System.Data.Odbc/OdbcConnectionTest.cs +System.Data.Odbc/OdbcDataAdapterTest.cs +System.Data.Odbc/OdbcDataReaderTest.cs +System.Data.Odbc/OdbcMetaDataCollectionNamesTest.cs +System.Data.Odbc/OdbcParameterCollectionTest.cs +System.Data.Odbc/OdbcParameterTest.cs +System.Data.Odbc/OdbcPermissionAttributeTest.cs +System.Data.Odbc/OdbcPermissionTest.cs +System.Data.OleDb/OleDbCommandTest.cs +System.Data.OleDb/OleDbConnectionTest.cs +System.Data.OleDb/OleDbDataAdapterTest.cs +System.Data.OleDb/OleDbMetaDataCollectionNamesTest.cs +System.Data.OleDb/OleDbParameterCollectionTest.cs +System.Data.OleDb/OleDbPermissionAttributeTest.cs +System.Data.OleDb/OleDbPermissionTest.cs diff --git a/mcs/class/System.IdentityModel/aot_hybrid_System.IdentityModel.dll.sources b/mcs/class/System.IdentityModel/aot_hybrid_System.IdentityModel.dll.sources deleted file mode 100644 index 429636751c2..00000000000 --- a/mcs/class/System.IdentityModel/aot_hybrid_System.IdentityModel.dll.sources +++ /dev/null @@ -1 +0,0 @@ -#include mobile_System.IdentityModel.dll.sources diff --git a/mcs/class/System.IdentityModel/testing_aot_hybrid_System.IdentityModel.dll.sources b/mcs/class/System.IdentityModel/testing_aot_hybrid_System.IdentityModel.dll.sources new file mode 100644 index 00000000000..429636751c2 --- /dev/null +++ b/mcs/class/System.IdentityModel/testing_aot_hybrid_System.IdentityModel.dll.sources @@ -0,0 +1 @@ +#include mobile_System.IdentityModel.dll.sources diff --git a/mcs/class/System.Runtime.Serialization/aot_hybrid_System.Runtime.Serialization.dll.sources b/mcs/class/System.Runtime.Serialization/aot_hybrid_System.Runtime.Serialization.dll.sources deleted file mode 100644 index 6caafd41198..00000000000 --- a/mcs/class/System.Runtime.Serialization/aot_hybrid_System.Runtime.Serialization.dll.sources +++ /dev/null @@ -1 +0,0 @@ -#include mobile_System.Runtime.Serialization.dll.sources diff --git a/mcs/class/System.Runtime.Serialization/testing_aot_hybrid_System.Runtime.Serialization.dll.sources b/mcs/class/System.Runtime.Serialization/testing_aot_hybrid_System.Runtime.Serialization.dll.sources new file mode 100644 index 00000000000..6caafd41198 --- /dev/null +++ b/mcs/class/System.Runtime.Serialization/testing_aot_hybrid_System.Runtime.Serialization.dll.sources @@ -0,0 +1 @@ +#include mobile_System.Runtime.Serialization.dll.sources diff --git a/mcs/class/System.ServiceModel.Internals/aot_hybrid_System.ServiceModel.Internals.dll.sources b/mcs/class/System.ServiceModel.Internals/aot_hybrid_System.ServiceModel.Internals.dll.sources deleted file mode 100644 index f51db672e59..00000000000 --- a/mcs/class/System.ServiceModel.Internals/aot_hybrid_System.ServiceModel.Internals.dll.sources +++ /dev/null @@ -1 +0,0 @@ -#include mobile_System.ServiceModel.Internals.dll.sources diff --git a/mcs/class/System.ServiceModel.Internals/testing_aot_hybrid_System.ServiceModel.Internals.dll.sources b/mcs/class/System.ServiceModel.Internals/testing_aot_hybrid_System.ServiceModel.Internals.dll.sources new file mode 100644 index 00000000000..f51db672e59 --- /dev/null +++ b/mcs/class/System.ServiceModel.Internals/testing_aot_hybrid_System.ServiceModel.Internals.dll.sources @@ -0,0 +1 @@ +#include mobile_System.ServiceModel.Internals.dll.sources diff --git a/mcs/class/System.ServiceModel.Web/aot_hybrid_System.ServiceModel.Web.dll.sources b/mcs/class/System.ServiceModel.Web/aot_hybrid_System.ServiceModel.Web.dll.sources deleted file mode 100644 index cbea0fae7b4..00000000000 --- a/mcs/class/System.ServiceModel.Web/aot_hybrid_System.ServiceModel.Web.dll.sources +++ /dev/null @@ -1 +0,0 @@ -#include mobile_System.ServiceModel.Web.dll.sources diff --git a/mcs/class/System.ServiceModel.Web/testing_aot_hybrid_System.ServiceModel.Web.dll.sources b/mcs/class/System.ServiceModel.Web/testing_aot_hybrid_System.ServiceModel.Web.dll.sources new file mode 100644 index 00000000000..cbea0fae7b4 --- /dev/null +++ b/mcs/class/System.ServiceModel.Web/testing_aot_hybrid_System.ServiceModel.Web.dll.sources @@ -0,0 +1 @@ +#include mobile_System.ServiceModel.Web.dll.sources diff --git a/mcs/class/System.ServiceModel/aot_hybrid_System.ServiceModel.dll.sources b/mcs/class/System.ServiceModel/aot_hybrid_System.ServiceModel.dll.sources deleted file mode 100644 index 22ece5ce8ce..00000000000 --- a/mcs/class/System.ServiceModel/aot_hybrid_System.ServiceModel.dll.sources +++ /dev/null @@ -1 +0,0 @@ -#include mobile_System.ServiceModel.dll.sources diff --git a/mcs/class/System.ServiceModel/aot_hybrid_System.ServiceModel_test.dll.exclude.sources b/mcs/class/System.ServiceModel/aot_hybrid_System.ServiceModel_test.dll.exclude.sources deleted file mode 100644 index 350444a823a..00000000000 --- a/mcs/class/System.ServiceModel/aot_hybrid_System.ServiceModel_test.dll.exclude.sources +++ /dev/null @@ -1,151 +0,0 @@ -FeatureBased/Features.Contracts/AsyncCallTester.cs -FeatureBased/Features.Contracts/FaultsTester.cs -FeatureBased/Features.Serialization/AsyncCallTest.cs -FeatureBased/Features.Serialization/AsyncPatternTester.cs -FeatureBased/Features.Serialization/DataContractSerializerTest.cs -FeatureBased/Features.Serialization/DualContractTester.cs -FeatureBased/Features.Serialization/ExitProcessHelper.cs -FeatureBased/Features.Serialization/FaultsTest.cs -FeatureBased/Features.Serialization/KnownTypeTest.cs -FeatureBased/Features.Serialization/MessageContractTest.cs -FeatureBased/Features.Serialization/OperationContractTester.cs -FeatureBased/Features.Serialization/PrimitiveTesterTest.cs -FeatureBased/Features.Serialization/UntypedMessageTest.cs -FeatureBased/TestFixtureBase.cs -MetadataTests/BindingTestAssertions.cs -MetadataTests/ExportTests.cs -MetadataTests/ImportTests.cs -MetadataTests/ImportTests_CreateMetadata.cs -MetadataTests/ImportTests_LoadMetadata.cs -MetadataTests/ImportTests_RoundTrip.cs -MetadataTests/MetadataSamples.cs -MetadataTests/MiscImportTests.cs -MetadataTests/TestContext.cs -System.ServiceModel.Channels/AsymmetricSecurityBindingElementTest.cs -System.ServiceModel.Channels/BinaryMessageEncodingBindingElementTest.cs -System.ServiceModel.Channels/BindingElementTest.cs -System.ServiceModel.Channels/CalcSampleProxy.cs -System.ServiceModel.Channels/CommunicationObjectTest.cs -System.ServiceModel.Channels/ConnectionOrientedTransportBindingElementTest.cs -System.ServiceModel.Channels/CustomBindingTest.cs -System.ServiceModel.Channels/CustomPolicyConversionContext.cs -System.ServiceModel.Channels/HandlerTransportBindingElement.cs -System.ServiceModel.Channels/HttpTransportBindingElementTest.cs -System.ServiceModel.Channels/HttpsTransportBindingElementTest.cs -System.ServiceModel.Channels/InterceptorBindingElement.cs -System.ServiceModel.Channels/LocalClientSecuritySettingsTest.cs -System.ServiceModel.Channels/MessageBufferTest.cs -System.ServiceModel.Channels/MessageEncoderTest.cs -System.ServiceModel.Channels/MsmqBindingElementBaseTest.cs -System.ServiceModel.Channels/MsmqTransportBindingElementTest.cs -System.ServiceModel.Channels/NamedPipeTransportBindingElementTest.cs -System.ServiceModel.Channels/OneWayBindingElementTest.cs -System.ServiceModel.Channels/PeerTransportBindingElementTest.cs -System.ServiceModel.Channels/ReplyChannelBase.cs -System.ServiceModel.Channels/SecurityAssert.cs -System.ServiceModel.Channels/SecurityBindingElementTest.cs -System.ServiceModel.Channels/SslStreamSecurityBindingElementTest.cs -System.ServiceModel.Channels/SymmetricSecurityBindingElementTest.cs -System.ServiceModel.Channels/TcpTransportBindingElementTest.cs -System.ServiceModel.Channels/TextMessageEncodingBindingElementTest.cs -System.ServiceModel.Channels/TransactionFlowBindingElementTest.cs -System.ServiceModel.Configuration/AddressHeaderCollectionElementTest.cs -System.ServiceModel.Configuration/BasicHttpBindingElementTest.cs -System.ServiceModel.Configuration/BehaviorsSectionTest.cs -System.ServiceModel.Configuration/BindingsSectionTest.cs -System.ServiceModel.Configuration/ChannelEndpointElementTest.cs -System.ServiceModel.Configuration/CustomBindingElementTest.cs -System.ServiceModel.Configuration/EndpointBehaviorElementTest.cs -System.ServiceModel.Configuration/ExtensionsSectionTest.cs -System.ServiceModel.Configuration/MetadataElementTest.cs -System.ServiceModel.Configuration/MexBindingElementTest.cs -System.ServiceModel.Configuration/NetNamedPipeBindingElementTest.cs -System.ServiceModel.Configuration/NetPeerTcpBindingElementTest.cs -System.ServiceModel.Configuration/NetTcpBindingElementTest.cs -System.ServiceModel.Configuration/ServiceBehaviorElementTest.cs -System.ServiceModel.Configuration/ServiceElementTest.cs -System.ServiceModel.Configuration/ServiceModelConfigurationElementCollectionTest.cs -System.ServiceModel.Configuration/ServiceModelSectionGroupTest.cs -System.ServiceModel.Configuration/StandardBindingCollectionElementTest.cs -System.ServiceModel.Configuration/StandardBindingElementCollectionTest.cs -System.ServiceModel.Configuration/StandardBindingElementTest.cs -System.ServiceModel.Configuration/StandardEndpointsSectionTest.cs -System.ServiceModel.Configuration/UserBinding.cs -System.ServiceModel.Description/ClientCredentialsTest.cs -System.ServiceModel.Description/ContractDescriptionTest.cs -System.ServiceModel.Description/MetadataExchangeBindingsTest.cs -System.ServiceModel.Description/MetadataResolverTest.cs -System.ServiceModel.Description/MetadataSetTest.cs -System.ServiceModel.Description/ServiceAuthorizationBehaviorTest.cs -System.ServiceModel.Description/ServiceContractGeneratorTest.cs -System.ServiceModel.Description/ServiceCredentialsTest.cs -System.ServiceModel.Description/ServiceDebugBehaviorTest.cs -System.ServiceModel.Description/ServiceMetadataBehaviorTest.cs -System.ServiceModel.Description/ServiceMetadataEndpointTest.cs -System.ServiceModel.Description/ServiceThrottlingBehaviorTest.cs -System.ServiceModel.Description/TypedMessageConverterTest.cs -System.ServiceModel.Description/WsdlExporterTest.cs -System.ServiceModel.Description/WsdlImporterTest.cs -System.ServiceModel.Dispatcher/ActionFilterTest.cs -System.ServiceModel.Dispatcher/Bug32886Test.cs -System.ServiceModel.Dispatcher/Bug652331Test.cs -System.ServiceModel.Dispatcher/Bug652331_2Test.cs -System.ServiceModel.Dispatcher/ChannelDispatcherTest.cs -System.ServiceModel.Dispatcher/DispatchOperationTest.cs -System.ServiceModel.Dispatcher/DispatchRuntimeTest.cs -System.ServiceModel.Dispatcher/EndpointAddressMessageFilterTest.cs -System.ServiceModel.Dispatcher/EndpointDispatcherTest.cs -System.ServiceModel.Dispatcher/ExceptionHandlerTest.cs -System.ServiceModel.Dispatcher/FilterTableTest.cs -System.ServiceModel.Dispatcher/InvalidBodyAccessExceptionTest.cs -System.ServiceModel.Dispatcher/PrefixEndpointAddressMessageFilterTest.cs -System.ServiceModel.Dispatcher/XPathMessageContextTest.cs -System.ServiceModel.PeerResolvers/CustomPeerResolverServiceTest.cs -System.ServiceModel.PeerResolvers/PeerResolverSerializationTest.cs -System.ServiceModel.Security.Tokens/IssuedSecurityTokenParametersTest.cs -System.ServiceModel.Security.Tokens/IssuedSecurityTokenProviderTest.cs -System.ServiceModel.Security.Tokens/RsaSecurityTokenParametersTest.cs -System.ServiceModel.Security.Tokens/SecureConversationSecurityTokenParametersTest.cs -System.ServiceModel.Security.Tokens/SecurityContextSecurityTokenTest.cs -System.ServiceModel.Security.Tokens/SecurityTokenParametersTest.cs -System.ServiceModel.Security.Tokens/ServiceModelSecurityTokenTypesTest.cs -System.ServiceModel.Security.Tokens/SslSecurityTokenParametersTest.cs -System.ServiceModel.Security.Tokens/SspiSecurityTokenParametersTest.cs -System.ServiceModel.Security.Tokens/UserNameSecurityTokenParametersTest.cs -System.ServiceModel.Security.Tokens/WrappedKeySecurityTokenTest.cs -System.ServiceModel.Security.Tokens/X509ListedCertificateValidator.cs -System.ServiceModel.Security.Tokens/X509SecurityTokenParametersTest.cs -System.ServiceModel.Security/ChannelProtectionRequirementsTest.cs -System.ServiceModel.Security/MessagePartSpecificationTest.cs -System.ServiceModel.Security/ScopedMessagePartSpecificationTest.cs -System.ServiceModel.Security/SecurityAlgorithmSuiteTest.cs -System.ServiceModel.Security/SecurityMessagePropertyTest.cs -System.ServiceModel.Security/SecurityTokenSpeficicationTest.cs -System.ServiceModel.Security/ServiceCredentialsSecurityTokenManagerTest.cs -System.ServiceModel.Security/ServiceSecurityContextTest.cs -System.ServiceModel.Security/SupportingTokenParametersTest.cs -System.ServiceModel.Security/TransportSecurityBindingElementTest.cs -System.ServiceModel.Security/WSSecurityTokenSerializerTest.cs -System.ServiceModel/BasicHttpBindingTest.cs -System.ServiceModel/CallbackBehaviorAttributeTest.cs -System.ServiceModel/ChannelFactoryTest.cs -System.ServiceModel/ChannelFactory_1Test.cs -System.ServiceModel/ClientBaseTest.cs -System.ServiceModel/ClientCredentialsSecurityTokenManagerTest.cs -System.ServiceModel/EndpointAddress10Test.cs -System.ServiceModel/EndpointAddressBuilderTest.cs -System.ServiceModel/EndpointAddressTest.cs -System.ServiceModel/EndpointIdentityTest.cs -System.ServiceModel/IntegratedConnectionTest.cs -System.ServiceModel/MessageSecurityVersionTest.cs -System.ServiceModel/MsmqTransportSecurityTest.cs -System.ServiceModel/NetMsmqBindingTest.cs -System.ServiceModel/NetPeerTcpBindingTest.cs -System.ServiceModel/NetTcpBindingTest.cs -System.ServiceModel/OperationContextTest.cs -System.ServiceModel/PeerNodeAddressTest.cs -System.ServiceModel/ServiceHostBaseTest.cs -System.ServiceModel/ServiceHostTest.cs -System.ServiceModel/TransactionProtocolTest.cs -System.ServiceModel/WSFederationHttpBindingTest.cs -System.ServiceModel/WSHttpBindingTest.cs diff --git a/mcs/class/System.ServiceModel/testing_aot_hybrid_System.ServiceModel.dll.sources b/mcs/class/System.ServiceModel/testing_aot_hybrid_System.ServiceModel.dll.sources new file mode 100644 index 00000000000..22ece5ce8ce --- /dev/null +++ b/mcs/class/System.ServiceModel/testing_aot_hybrid_System.ServiceModel.dll.sources @@ -0,0 +1 @@ +#include mobile_System.ServiceModel.dll.sources diff --git a/mcs/class/System.ServiceModel/testing_aot_hybrid_System.ServiceModel_test.dll.exclude.sources b/mcs/class/System.ServiceModel/testing_aot_hybrid_System.ServiceModel_test.dll.exclude.sources new file mode 100644 index 00000000000..350444a823a --- /dev/null +++ b/mcs/class/System.ServiceModel/testing_aot_hybrid_System.ServiceModel_test.dll.exclude.sources @@ -0,0 +1,151 @@ +FeatureBased/Features.Contracts/AsyncCallTester.cs +FeatureBased/Features.Contracts/FaultsTester.cs +FeatureBased/Features.Serialization/AsyncCallTest.cs +FeatureBased/Features.Serialization/AsyncPatternTester.cs +FeatureBased/Features.Serialization/DataContractSerializerTest.cs +FeatureBased/Features.Serialization/DualContractTester.cs +FeatureBased/Features.Serialization/ExitProcessHelper.cs +FeatureBased/Features.Serialization/FaultsTest.cs +FeatureBased/Features.Serialization/KnownTypeTest.cs +FeatureBased/Features.Serialization/MessageContractTest.cs +FeatureBased/Features.Serialization/OperationContractTester.cs +FeatureBased/Features.Serialization/PrimitiveTesterTest.cs +FeatureBased/Features.Serialization/UntypedMessageTest.cs +FeatureBased/TestFixtureBase.cs +MetadataTests/BindingTestAssertions.cs +MetadataTests/ExportTests.cs +MetadataTests/ImportTests.cs +MetadataTests/ImportTests_CreateMetadata.cs +MetadataTests/ImportTests_LoadMetadata.cs +MetadataTests/ImportTests_RoundTrip.cs +MetadataTests/MetadataSamples.cs +MetadataTests/MiscImportTests.cs +MetadataTests/TestContext.cs +System.ServiceModel.Channels/AsymmetricSecurityBindingElementTest.cs +System.ServiceModel.Channels/BinaryMessageEncodingBindingElementTest.cs +System.ServiceModel.Channels/BindingElementTest.cs +System.ServiceModel.Channels/CalcSampleProxy.cs +System.ServiceModel.Channels/CommunicationObjectTest.cs +System.ServiceModel.Channels/ConnectionOrientedTransportBindingElementTest.cs +System.ServiceModel.Channels/CustomBindingTest.cs +System.ServiceModel.Channels/CustomPolicyConversionContext.cs +System.ServiceModel.Channels/HandlerTransportBindingElement.cs +System.ServiceModel.Channels/HttpTransportBindingElementTest.cs +System.ServiceModel.Channels/HttpsTransportBindingElementTest.cs +System.ServiceModel.Channels/InterceptorBindingElement.cs +System.ServiceModel.Channels/LocalClientSecuritySettingsTest.cs +System.ServiceModel.Channels/MessageBufferTest.cs +System.ServiceModel.Channels/MessageEncoderTest.cs +System.ServiceModel.Channels/MsmqBindingElementBaseTest.cs +System.ServiceModel.Channels/MsmqTransportBindingElementTest.cs +System.ServiceModel.Channels/NamedPipeTransportBindingElementTest.cs +System.ServiceModel.Channels/OneWayBindingElementTest.cs +System.ServiceModel.Channels/PeerTransportBindingElementTest.cs +System.ServiceModel.Channels/ReplyChannelBase.cs +System.ServiceModel.Channels/SecurityAssert.cs +System.ServiceModel.Channels/SecurityBindingElementTest.cs +System.ServiceModel.Channels/SslStreamSecurityBindingElementTest.cs +System.ServiceModel.Channels/SymmetricSecurityBindingElementTest.cs +System.ServiceModel.Channels/TcpTransportBindingElementTest.cs +System.ServiceModel.Channels/TextMessageEncodingBindingElementTest.cs +System.ServiceModel.Channels/TransactionFlowBindingElementTest.cs +System.ServiceModel.Configuration/AddressHeaderCollectionElementTest.cs +System.ServiceModel.Configuration/BasicHttpBindingElementTest.cs +System.ServiceModel.Configuration/BehaviorsSectionTest.cs +System.ServiceModel.Configuration/BindingsSectionTest.cs +System.ServiceModel.Configuration/ChannelEndpointElementTest.cs +System.ServiceModel.Configuration/CustomBindingElementTest.cs +System.ServiceModel.Configuration/EndpointBehaviorElementTest.cs +System.ServiceModel.Configuration/ExtensionsSectionTest.cs +System.ServiceModel.Configuration/MetadataElementTest.cs +System.ServiceModel.Configuration/MexBindingElementTest.cs +System.ServiceModel.Configuration/NetNamedPipeBindingElementTest.cs +System.ServiceModel.Configuration/NetPeerTcpBindingElementTest.cs +System.ServiceModel.Configuration/NetTcpBindingElementTest.cs +System.ServiceModel.Configuration/ServiceBehaviorElementTest.cs +System.ServiceModel.Configuration/ServiceElementTest.cs +System.ServiceModel.Configuration/ServiceModelConfigurationElementCollectionTest.cs +System.ServiceModel.Configuration/ServiceModelSectionGroupTest.cs +System.ServiceModel.Configuration/StandardBindingCollectionElementTest.cs +System.ServiceModel.Configuration/StandardBindingElementCollectionTest.cs +System.ServiceModel.Configuration/StandardBindingElementTest.cs +System.ServiceModel.Configuration/StandardEndpointsSectionTest.cs +System.ServiceModel.Configuration/UserBinding.cs +System.ServiceModel.Description/ClientCredentialsTest.cs +System.ServiceModel.Description/ContractDescriptionTest.cs +System.ServiceModel.Description/MetadataExchangeBindingsTest.cs +System.ServiceModel.Description/MetadataResolverTest.cs +System.ServiceModel.Description/MetadataSetTest.cs +System.ServiceModel.Description/ServiceAuthorizationBehaviorTest.cs +System.ServiceModel.Description/ServiceContractGeneratorTest.cs +System.ServiceModel.Description/ServiceCredentialsTest.cs +System.ServiceModel.Description/ServiceDebugBehaviorTest.cs +System.ServiceModel.Description/ServiceMetadataBehaviorTest.cs +System.ServiceModel.Description/ServiceMetadataEndpointTest.cs +System.ServiceModel.Description/ServiceThrottlingBehaviorTest.cs +System.ServiceModel.Description/TypedMessageConverterTest.cs +System.ServiceModel.Description/WsdlExporterTest.cs +System.ServiceModel.Description/WsdlImporterTest.cs +System.ServiceModel.Dispatcher/ActionFilterTest.cs +System.ServiceModel.Dispatcher/Bug32886Test.cs +System.ServiceModel.Dispatcher/Bug652331Test.cs +System.ServiceModel.Dispatcher/Bug652331_2Test.cs +System.ServiceModel.Dispatcher/ChannelDispatcherTest.cs +System.ServiceModel.Dispatcher/DispatchOperationTest.cs +System.ServiceModel.Dispatcher/DispatchRuntimeTest.cs +System.ServiceModel.Dispatcher/EndpointAddressMessageFilterTest.cs +System.ServiceModel.Dispatcher/EndpointDispatcherTest.cs +System.ServiceModel.Dispatcher/ExceptionHandlerTest.cs +System.ServiceModel.Dispatcher/FilterTableTest.cs +System.ServiceModel.Dispatcher/InvalidBodyAccessExceptionTest.cs +System.ServiceModel.Dispatcher/PrefixEndpointAddressMessageFilterTest.cs +System.ServiceModel.Dispatcher/XPathMessageContextTest.cs +System.ServiceModel.PeerResolvers/CustomPeerResolverServiceTest.cs +System.ServiceModel.PeerResolvers/PeerResolverSerializationTest.cs +System.ServiceModel.Security.Tokens/IssuedSecurityTokenParametersTest.cs +System.ServiceModel.Security.Tokens/IssuedSecurityTokenProviderTest.cs +System.ServiceModel.Security.Tokens/RsaSecurityTokenParametersTest.cs +System.ServiceModel.Security.Tokens/SecureConversationSecurityTokenParametersTest.cs +System.ServiceModel.Security.Tokens/SecurityContextSecurityTokenTest.cs +System.ServiceModel.Security.Tokens/SecurityTokenParametersTest.cs +System.ServiceModel.Security.Tokens/ServiceModelSecurityTokenTypesTest.cs +System.ServiceModel.Security.Tokens/SslSecurityTokenParametersTest.cs +System.ServiceModel.Security.Tokens/SspiSecurityTokenParametersTest.cs +System.ServiceModel.Security.Tokens/UserNameSecurityTokenParametersTest.cs +System.ServiceModel.Security.Tokens/WrappedKeySecurityTokenTest.cs +System.ServiceModel.Security.Tokens/X509ListedCertificateValidator.cs +System.ServiceModel.Security.Tokens/X509SecurityTokenParametersTest.cs +System.ServiceModel.Security/ChannelProtectionRequirementsTest.cs +System.ServiceModel.Security/MessagePartSpecificationTest.cs +System.ServiceModel.Security/ScopedMessagePartSpecificationTest.cs +System.ServiceModel.Security/SecurityAlgorithmSuiteTest.cs +System.ServiceModel.Security/SecurityMessagePropertyTest.cs +System.ServiceModel.Security/SecurityTokenSpeficicationTest.cs +System.ServiceModel.Security/ServiceCredentialsSecurityTokenManagerTest.cs +System.ServiceModel.Security/ServiceSecurityContextTest.cs +System.ServiceModel.Security/SupportingTokenParametersTest.cs +System.ServiceModel.Security/TransportSecurityBindingElementTest.cs +System.ServiceModel.Security/WSSecurityTokenSerializerTest.cs +System.ServiceModel/BasicHttpBindingTest.cs +System.ServiceModel/CallbackBehaviorAttributeTest.cs +System.ServiceModel/ChannelFactoryTest.cs +System.ServiceModel/ChannelFactory_1Test.cs +System.ServiceModel/ClientBaseTest.cs +System.ServiceModel/ClientCredentialsSecurityTokenManagerTest.cs +System.ServiceModel/EndpointAddress10Test.cs +System.ServiceModel/EndpointAddressBuilderTest.cs +System.ServiceModel/EndpointAddressTest.cs +System.ServiceModel/EndpointIdentityTest.cs +System.ServiceModel/IntegratedConnectionTest.cs +System.ServiceModel/MessageSecurityVersionTest.cs +System.ServiceModel/MsmqTransportSecurityTest.cs +System.ServiceModel/NetMsmqBindingTest.cs +System.ServiceModel/NetPeerTcpBindingTest.cs +System.ServiceModel/NetTcpBindingTest.cs +System.ServiceModel/OperationContextTest.cs +System.ServiceModel/PeerNodeAddressTest.cs +System.ServiceModel/ServiceHostBaseTest.cs +System.ServiceModel/ServiceHostTest.cs +System.ServiceModel/TransactionProtocolTest.cs +System.ServiceModel/WSFederationHttpBindingTest.cs +System.ServiceModel/WSHttpBindingTest.cs diff --git a/mcs/class/System.Web.Services/aot_hybrid_System.Web.Services.dll.sources b/mcs/class/System.Web.Services/aot_hybrid_System.Web.Services.dll.sources deleted file mode 100644 index 9e39dcc73b1..00000000000 --- a/mcs/class/System.Web.Services/aot_hybrid_System.Web.Services.dll.sources +++ /dev/null @@ -1 +0,0 @@ -#include mobile_System.Web.Services.dll.sources diff --git a/mcs/class/System.Web.Services/aot_hybrid_System.Web.Services_test.dll.exclude.sources b/mcs/class/System.Web.Services/aot_hybrid_System.Web.Services_test.dll.exclude.sources deleted file mode 100644 index 0dee611d624..00000000000 --- a/mcs/class/System.Web.Services/aot_hybrid_System.Web.Services_test.dll.exclude.sources +++ /dev/null @@ -1,8 +0,0 @@ -System.Web.Services.Configuration/DiagnosticsElementTest.cs -System.Web.Services.Configuration/ProtocolElementTest.cs -System.Web.Services.Configuration/SoapEnvelopeProcessingElementTest.cs -System.Web.Services.Configuration/SoapExtensionTypeElementTest.cs -System.Web.Services.Configuration/TypeElementTest.cs -System.Web.Services.Configuration/WsdlHelpGeneratorElementTest.cs -System.Web.Services.Configuration/WsiProfilesElementTest.cs -System.Web.Services.Configuration/XmlFormatExtensionAttributeTest.cs diff --git a/mcs/class/System.Web.Services/testing_aot_hybrid_System.Web.Services.dll.sources b/mcs/class/System.Web.Services/testing_aot_hybrid_System.Web.Services.dll.sources new file mode 100644 index 00000000000..9e39dcc73b1 --- /dev/null +++ b/mcs/class/System.Web.Services/testing_aot_hybrid_System.Web.Services.dll.sources @@ -0,0 +1 @@ +#include mobile_System.Web.Services.dll.sources diff --git a/mcs/class/System.Web.Services/testing_aot_hybrid_System.Web.Services_test.dll.exclude.sources b/mcs/class/System.Web.Services/testing_aot_hybrid_System.Web.Services_test.dll.exclude.sources new file mode 100644 index 00000000000..0dee611d624 --- /dev/null +++ b/mcs/class/System.Web.Services/testing_aot_hybrid_System.Web.Services_test.dll.exclude.sources @@ -0,0 +1,8 @@ +System.Web.Services.Configuration/DiagnosticsElementTest.cs +System.Web.Services.Configuration/ProtocolElementTest.cs +System.Web.Services.Configuration/SoapEnvelopeProcessingElementTest.cs +System.Web.Services.Configuration/SoapExtensionTypeElementTest.cs +System.Web.Services.Configuration/TypeElementTest.cs +System.Web.Services.Configuration/WsdlHelpGeneratorElementTest.cs +System.Web.Services.Configuration/WsiProfilesElementTest.cs +System.Web.Services.Configuration/XmlFormatExtensionAttributeTest.cs diff --git a/mcs/class/System.XML/aot_hybrid_System.Xml.dll.sources b/mcs/class/System.XML/aot_hybrid_System.Xml.dll.sources deleted file mode 100644 index b6630930f75..00000000000 --- a/mcs/class/System.XML/aot_hybrid_System.Xml.dll.sources +++ /dev/null @@ -1 +0,0 @@ -#include mobile_System.Xml.dll.sources diff --git a/mcs/class/System.XML/testing_aot_hybrid_System.Xml.dll.sources b/mcs/class/System.XML/testing_aot_hybrid_System.Xml.dll.sources new file mode 100644 index 00000000000..b6630930f75 --- /dev/null +++ b/mcs/class/System.XML/testing_aot_hybrid_System.Xml.dll.sources @@ -0,0 +1 @@ +#include mobile_System.Xml.dll.sources diff --git a/mcs/class/System/aot_hybrid_System.dll.sources b/mcs/class/System/aot_hybrid_System.dll.sources deleted file mode 100644 index 70a77a6dbff..00000000000 --- a/mcs/class/System/aot_hybrid_System.dll.sources +++ /dev/null @@ -1 +0,0 @@ -#include mobile_System.dll.sources diff --git a/mcs/class/System/aot_hybrid_System_test.dll.exclude.sources b/mcs/class/System/aot_hybrid_System_test.dll.exclude.sources deleted file mode 100644 index 9a453e68f8c..00000000000 --- a/mcs/class/System/aot_hybrid_System_test.dll.exclude.sources +++ /dev/null @@ -1,210 +0,0 @@ - -Microsoft.CSharp/CSharpCodeProviderCas.cs -Microsoft.CSharp/CSharpCodeProviderTest.cs -Microsoft.CSharp/CodeGeneratorFromCompileUnitTest.cs -Microsoft.CSharp/CodeGeneratorFromExpressionTest.cs -Microsoft.CSharp/CodeGeneratorFromNamespaceTest.cs -Microsoft.CSharp/CodeGeneratorFromStatementTest.cs -Microsoft.CSharp/CodeGeneratorFromTypeTest.cs -Microsoft.CSharp/CodeGeneratorIdentifierTest.cs -Microsoft.CSharp/CodeGeneratorTestBase.cs -Microsoft.CSharp/CodeGeneratorTypeOutputTest.cs -Microsoft.VisualBasic/CodeGeneratorFromBinaryOperatorTest.cs -Microsoft.VisualBasic/CodeGeneratorFromCompileUnitTest.cs -Microsoft.VisualBasic/CodeGeneratorFromExpressionTest.cs -Microsoft.VisualBasic/CodeGeneratorFromNamespaceTest.cs -Microsoft.VisualBasic/CodeGeneratorFromStatementTest.cs -Microsoft.VisualBasic/CodeGeneratorFromTypeTest.cs -Microsoft.VisualBasic/CodeGeneratorTestBase.cs -Microsoft.VisualBasic/VBCodeProviderCas.cs -Microsoft.VisualBasic/VBCodeProviderTest.cs -Microsoft.Win32/IntranetZoneCredentialPolicyCas.cs -Microsoft.Win32/IntranetZoneCredentialPolicyTest.cs -Microsoft.Win32/PowerModeChangedEventArgsCas.cs -Microsoft.Win32/SessionEndedEventArgsCas.cs -Microsoft.Win32/SessionEndingEventArgsCas.cs -Microsoft.Win32/SessionSwitchEventArgsCas.cs -Microsoft.Win32/SessionSwitchEventArgsTest.cs -Microsoft.Win32/SystemEventsCas.cs -Microsoft.Win32/TimerElapsedEventArgsCas.cs -Microsoft.Win32/UserPreferenceChangedEventArgsCas.cs -Microsoft.Win32/UserPreferenceChangingEventArgsCas.cs -System.CodeDom.Compiler/CodeCompilerCas.cs -System.CodeDom.Compiler/CodeDomProviderCas.cs -System.CodeDom.Compiler/CodeGeneratorCas.cs -System.CodeDom.Compiler/CodeGeneratorFromTypeTestBase.cs -System.CodeDom.Compiler/CodeGeneratorGenerateFromCompileUnitTest.cs -System.CodeDom.Compiler/CodeGeneratorOptionsCas.cs -System.CodeDom.Compiler/CodeGeneratorOptionsTest.cs -System.CodeDom.Compiler/CodeGeneratorTest.cs -System.CodeDom.Compiler/CodeGeneratorTestBase.cs -System.CodeDom.Compiler/CodeParserCas.cs -System.CodeDom.Compiler/CompilerErrorCas.cs -System.CodeDom.Compiler/CompilerErrorCollectionCas.cs -System.CodeDom.Compiler/CompilerInfoCas.cs -System.CodeDom.Compiler/CompilerParametersCas.cs -System.CodeDom.Compiler/CompilerResultsCas.cs -System.CodeDom.Compiler/ExecutorCas.cs -System.CodeDom.Compiler/ExecutorTest.cs -System.CodeDom.Compiler/GeneratedCodeAttributeCas.cs -System.CodeDom.Compiler/GeneratedCodeAttributeTest.cs -System.CodeDom.Compiler/IndentedTextWriterCas.cs -System.CodeDom.Compiler/IndentedTextWriterTest.cs -System.CodeDom.Compiler/TempFileCollectionCas.cs -System.CodeDom.Compiler/TempFileCollectionTest.cs -System.CodeDom/CodeArgumentReferenceExpressionCas.cs -System.CodeDom/CodeArgumentReferenceExpressionTest.cs -System.CodeDom/CodeArrayCreateExpressionCas.cs -System.CodeDom/CodeArrayCreateExpressionTest.cs -System.CodeDom/CodeArrayIndexerExpressionCas.cs -System.CodeDom/CodeAssignStatementCas.cs -System.CodeDom/CodeAttachEventStatementCas.cs -System.CodeDom/CodeAttachEventStatementTest.cs -System.CodeDom/CodeAttributeArgumentCas.cs -System.CodeDom/CodeAttributeArgumentCollectionCas.cs -System.CodeDom/CodeAttributeArgumentCollectionTest.cs -System.CodeDom/CodeAttributeArgumentTest.cs -System.CodeDom/CodeAttributeDeclarationCas.cs -System.CodeDom/CodeAttributeDeclarationCollectionCas.cs -System.CodeDom/CodeAttributeDeclarationCollectionTest.cs -System.CodeDom/CodeAttributeDeclarationTest.cs -System.CodeDom/CodeBaseReferenceExpressionCas.cs -System.CodeDom/CodeBinaryOperatorExpressionCas.cs -System.CodeDom/CodeCastExpressionCas.cs -System.CodeDom/CodeCastExpressionTest.cs -System.CodeDom/CodeCatchClauseCas.cs -System.CodeDom/CodeCatchClauseCollectionCas.cs -System.CodeDom/CodeCatchClauseCollectionTest.cs -System.CodeDom/CodeCatchClauseTest.cs -System.CodeDom/CodeChecksumPragmaCas.cs -System.CodeDom/CodeChecksumPragmaTest.cs -System.CodeDom/CodeCommentStatementCas.cs -System.CodeDom/CodeCommentStatementCollectionCas.cs -System.CodeDom/CodeCommentStatementCollectionTest.cs -System.CodeDom/CodeCompileUnitCas.cs -System.CodeDom/CodeConditionStatementCas.cs -System.CodeDom/CodeConstructorCas.cs -System.CodeDom/CodeConstructorTest.cs -System.CodeDom/CodeDefaultValueExpressionCas.cs -System.CodeDom/CodeDefaultValueExpressionTest.cs -System.CodeDom/CodeDelegateCreateExpressionCas.cs -System.CodeDom/CodeDelegateCreateExpressionTest.cs -System.CodeDom/CodeDelegateInvokeExpressionCas.cs -System.CodeDom/CodeDirectionExpressionCas.cs -System.CodeDom/CodeDirectiveCas.cs -System.CodeDom/CodeDirectiveCollectionCas.cs -System.CodeDom/CodeDirectiveCollectionTest.cs -System.CodeDom/CodeEntryPointMethodCas.cs -System.CodeDom/CodeEventReferenceExpressionCas.cs -System.CodeDom/CodeEventReferenceExpressionTest.cs -System.CodeDom/CodeExpressionCas.cs -System.CodeDom/CodeExpressionCollectionCas.cs -System.CodeDom/CodeExpressionCollectionTest.cs -System.CodeDom/CodeExpressionStatementCas.cs -System.CodeDom/CodeFieldReferenceExpressionCas.cs -System.CodeDom/CodeGotoStatementCas.cs -System.CodeDom/CodeGotoStatementTest.cs -System.CodeDom/CodeIndexerExpressionCas.cs -System.CodeDom/CodeIterationStatementCas.cs -System.CodeDom/CodeLabeledStatementTest.cs -System.CodeDom/CodeLinePragmaCas.cs -System.CodeDom/CodeLinePragmaTest.cs -System.CodeDom/CodeMemberEventCas.cs -System.CodeDom/CodeMemberFieldCas.cs -System.CodeDom/CodeMemberFieldTest.cs -System.CodeDom/CodeMemberMethodCas.cs -System.CodeDom/CodeMemberMethodTest.cs -System.CodeDom/CodeMemberPropertyCas.cs -System.CodeDom/CodeMemberPropertyTest.cs -System.CodeDom/CodeMethodInvokeExpressionCas.cs -System.CodeDom/CodeMethodInvokeExpressionTest.cs -System.CodeDom/CodeMethodReferenceExpressionCas.cs -System.CodeDom/CodeMethodReferenceExpressionTest.cs -System.CodeDom/CodeMethodReturnStatementCas.cs -System.CodeDom/CodeNamespaceCas.cs -System.CodeDom/CodeNamespaceCollectionCas.cs -System.CodeDom/CodeNamespaceCollectionTest.cs -System.CodeDom/CodeNamespaceImportCas.cs -System.CodeDom/CodeNamespaceImportCollectionCas.cs -System.CodeDom/CodeNamespaceImportCollectionTest.cs -System.CodeDom/CodeNamespaceImportTest.cs -System.CodeDom/CodeNamespaceTest.cs -System.CodeDom/CodeObjectCas.cs -System.CodeDom/CodeObjectCreateExpressionCas.cs -System.CodeDom/CodeObjectCreateExpressionTest.cs -System.CodeDom/CodeParameterDeclarationExpressionCas.cs -System.CodeDom/CodeParameterDeclarationExpressionCollectionCas.cs -System.CodeDom/CodeParameterDeclarationExpressionCollectionTest.cs -System.CodeDom/CodeParameterDeclarationExpressionTest.cs -System.CodeDom/CodePrimitiveExpressionCas.cs -System.CodeDom/CodePropertyReferenceExpressionCas.cs -System.CodeDom/CodePropertyReferenceExpressionTest.cs -System.CodeDom/CodePropertySetValueReferenceExpressionCas.cs -System.CodeDom/CodeRegionDirectiveCas.cs -System.CodeDom/CodeRegionDirectiveTest.cs -System.CodeDom/CodeRemoveEventStatementCas.cs -System.CodeDom/CodeRemoveEventStatementTest.cs -System.CodeDom/CodeSnippetCompileUnitCas.cs -System.CodeDom/CodeSnippetCompileUnitTest.cs -System.CodeDom/CodeSnippetExpressionCas.cs -System.CodeDom/CodeSnippetExpressionTest.cs -System.CodeDom/CodeSnippetStatementCas.cs -System.CodeDom/CodeSnippetStatementTest.cs -System.CodeDom/CodeSnippetTypeMemberCas.cs -System.CodeDom/CodeSnippetTypeMemberTest.cs -System.CodeDom/CodeStatementCas.cs -System.CodeDom/CodeStatementCollectionCas.cs -System.CodeDom/CodeStatementCollectionTest.cs -System.CodeDom/CodeThisReferenceExpressionCas.cs -System.CodeDom/CodeThrowExceptionStatementCas.cs -System.CodeDom/CodeTryCatchFinallyStatementCas.cs -System.CodeDom/CodeTypeConstructorCas.cs -System.CodeDom/CodeTypeConstructorTest.cs -System.CodeDom/CodeTypeDeclarationCas.cs -System.CodeDom/CodeTypeDeclarationCollectionCas.cs -System.CodeDom/CodeTypeDeclarationCollectionTest.cs -System.CodeDom/CodeTypeDelegateCas.cs -System.CodeDom/CodeTypeDelegateTest.cs -System.CodeDom/CodeTypeMemberCas.cs -System.CodeDom/CodeTypeMemberCollectionCas.cs -System.CodeDom/CodeTypeMemberCollectionTest.cs -System.CodeDom/CodeTypeOfExpressionCas.cs -System.CodeDom/CodeTypeOfExpressionTest.cs -System.CodeDom/CodeTypeParameterCas.cs -System.CodeDom/CodeTypeParameterCollectionTest.cs -System.CodeDom/CodeTypeParameterTest.cs -System.CodeDom/CodeTypeReferenceCas.cs -System.CodeDom/CodeTypeReferenceCollectionCas.cs -System.CodeDom/CodeTypeReferenceCollectionTest.cs -System.CodeDom/CodeTypeReferenceExpressionCas.cs -System.CodeDom/CodeTypeReferenceExpressionTest.cs -System.CodeDom/CodeTypeReferenceTest.cs -System.CodeDom/CodeVariableDeclarationStatementCas.cs -System.CodeDom/CodeVariableDeclarationStatementTest.cs -System.CodeDom/CodeVariableReferenceExpressionCas.cs -System.CodeDom/CodeVariableReferenceExpressionTest.cs -System.Configuration.Provider -System.Configuration.Provider/ProviderBaseTest.cs -System.Configuration/ApplicationSettingsBaseTest.cs -System.Configuration/ConfigXmlDocumentTest.cs -System.Configuration/ConfigurationExceptionTest.cs -System.Configuration/LocalFileSettingsProviderTest.cs -System.Configuration/SettingElementTest.cs -System.Configuration/SettingsBaseTest.cs -System.Configuration/SettingsPropertyCollectionTest.cs -System.Configuration/SettingsPropertyTest.cs -System.Configuration/SettingsPropertyValueCollectionTest.cs -System.Configuration/SettingsPropertyValueTest.cs -System.IO.Ports/SerialPortTest.cs -System.Security.Permissions/ResourcePermissionBaseCas.cs -System.Security.Permissions/ResourcePermissionBaseEntryCas.cs -System.Security.Permissions/ResourcePermissionBaseEntryTest.cs -System.Security.Permissions/ResourcePermissionBaseTest.cs -System.Security.Permissions/StorePermissionAttributeCas.cs -System.Security.Permissions/StorePermissionAttributeTest.cs -System.Security.Permissions/StorePermissionCas.cs -System.Security.Permissions/StorePermissionTest.cs -System.Web/AspNetHostingPermissionAttributeCas.cs -System.Web/AspNetHostingPermissionAttributeTest.cs -System.Web/AspNetHostingPermissionCas.cs -System.Web/AspNetHostingPermissionTest.cs diff --git a/mcs/class/System/testing_aot_hybrid_System.dll.sources b/mcs/class/System/testing_aot_hybrid_System.dll.sources new file mode 100644 index 00000000000..70a77a6dbff --- /dev/null +++ b/mcs/class/System/testing_aot_hybrid_System.dll.sources @@ -0,0 +1 @@ +#include mobile_System.dll.sources diff --git a/mcs/class/System/testing_aot_hybrid_System_test.dll.exclude.sources b/mcs/class/System/testing_aot_hybrid_System_test.dll.exclude.sources new file mode 100644 index 00000000000..9a453e68f8c --- /dev/null +++ b/mcs/class/System/testing_aot_hybrid_System_test.dll.exclude.sources @@ -0,0 +1,210 @@ + +Microsoft.CSharp/CSharpCodeProviderCas.cs +Microsoft.CSharp/CSharpCodeProviderTest.cs +Microsoft.CSharp/CodeGeneratorFromCompileUnitTest.cs +Microsoft.CSharp/CodeGeneratorFromExpressionTest.cs +Microsoft.CSharp/CodeGeneratorFromNamespaceTest.cs +Microsoft.CSharp/CodeGeneratorFromStatementTest.cs +Microsoft.CSharp/CodeGeneratorFromTypeTest.cs +Microsoft.CSharp/CodeGeneratorIdentifierTest.cs +Microsoft.CSharp/CodeGeneratorTestBase.cs +Microsoft.CSharp/CodeGeneratorTypeOutputTest.cs +Microsoft.VisualBasic/CodeGeneratorFromBinaryOperatorTest.cs +Microsoft.VisualBasic/CodeGeneratorFromCompileUnitTest.cs +Microsoft.VisualBasic/CodeGeneratorFromExpressionTest.cs +Microsoft.VisualBasic/CodeGeneratorFromNamespaceTest.cs +Microsoft.VisualBasic/CodeGeneratorFromStatementTest.cs +Microsoft.VisualBasic/CodeGeneratorFromTypeTest.cs +Microsoft.VisualBasic/CodeGeneratorTestBase.cs +Microsoft.VisualBasic/VBCodeProviderCas.cs +Microsoft.VisualBasic/VBCodeProviderTest.cs +Microsoft.Win32/IntranetZoneCredentialPolicyCas.cs +Microsoft.Win32/IntranetZoneCredentialPolicyTest.cs +Microsoft.Win32/PowerModeChangedEventArgsCas.cs +Microsoft.Win32/SessionEndedEventArgsCas.cs +Microsoft.Win32/SessionEndingEventArgsCas.cs +Microsoft.Win32/SessionSwitchEventArgsCas.cs +Microsoft.Win32/SessionSwitchEventArgsTest.cs +Microsoft.Win32/SystemEventsCas.cs +Microsoft.Win32/TimerElapsedEventArgsCas.cs +Microsoft.Win32/UserPreferenceChangedEventArgsCas.cs +Microsoft.Win32/UserPreferenceChangingEventArgsCas.cs +System.CodeDom.Compiler/CodeCompilerCas.cs +System.CodeDom.Compiler/CodeDomProviderCas.cs +System.CodeDom.Compiler/CodeGeneratorCas.cs +System.CodeDom.Compiler/CodeGeneratorFromTypeTestBase.cs +System.CodeDom.Compiler/CodeGeneratorGenerateFromCompileUnitTest.cs +System.CodeDom.Compiler/CodeGeneratorOptionsCas.cs +System.CodeDom.Compiler/CodeGeneratorOptionsTest.cs +System.CodeDom.Compiler/CodeGeneratorTest.cs +System.CodeDom.Compiler/CodeGeneratorTestBase.cs +System.CodeDom.Compiler/CodeParserCas.cs +System.CodeDom.Compiler/CompilerErrorCas.cs +System.CodeDom.Compiler/CompilerErrorCollectionCas.cs +System.CodeDom.Compiler/CompilerInfoCas.cs +System.CodeDom.Compiler/CompilerParametersCas.cs +System.CodeDom.Compiler/CompilerResultsCas.cs +System.CodeDom.Compiler/ExecutorCas.cs +System.CodeDom.Compiler/ExecutorTest.cs +System.CodeDom.Compiler/GeneratedCodeAttributeCas.cs +System.CodeDom.Compiler/GeneratedCodeAttributeTest.cs +System.CodeDom.Compiler/IndentedTextWriterCas.cs +System.CodeDom.Compiler/IndentedTextWriterTest.cs +System.CodeDom.Compiler/TempFileCollectionCas.cs +System.CodeDom.Compiler/TempFileCollectionTest.cs +System.CodeDom/CodeArgumentReferenceExpressionCas.cs +System.CodeDom/CodeArgumentReferenceExpressionTest.cs +System.CodeDom/CodeArrayCreateExpressionCas.cs +System.CodeDom/CodeArrayCreateExpressionTest.cs +System.CodeDom/CodeArrayIndexerExpressionCas.cs +System.CodeDom/CodeAssignStatementCas.cs +System.CodeDom/CodeAttachEventStatementCas.cs +System.CodeDom/CodeAttachEventStatementTest.cs +System.CodeDom/CodeAttributeArgumentCas.cs +System.CodeDom/CodeAttributeArgumentCollectionCas.cs +System.CodeDom/CodeAttributeArgumentCollectionTest.cs +System.CodeDom/CodeAttributeArgumentTest.cs +System.CodeDom/CodeAttributeDeclarationCas.cs +System.CodeDom/CodeAttributeDeclarationCollectionCas.cs +System.CodeDom/CodeAttributeDeclarationCollectionTest.cs +System.CodeDom/CodeAttributeDeclarationTest.cs +System.CodeDom/CodeBaseReferenceExpressionCas.cs +System.CodeDom/CodeBinaryOperatorExpressionCas.cs +System.CodeDom/CodeCastExpressionCas.cs +System.CodeDom/CodeCastExpressionTest.cs +System.CodeDom/CodeCatchClauseCas.cs +System.CodeDom/CodeCatchClauseCollectionCas.cs +System.CodeDom/CodeCatchClauseCollectionTest.cs +System.CodeDom/CodeCatchClauseTest.cs +System.CodeDom/CodeChecksumPragmaCas.cs +System.CodeDom/CodeChecksumPragmaTest.cs +System.CodeDom/CodeCommentStatementCas.cs +System.CodeDom/CodeCommentStatementCollectionCas.cs +System.CodeDom/CodeCommentStatementCollectionTest.cs +System.CodeDom/CodeCompileUnitCas.cs +System.CodeDom/CodeConditionStatementCas.cs +System.CodeDom/CodeConstructorCas.cs +System.CodeDom/CodeConstructorTest.cs +System.CodeDom/CodeDefaultValueExpressionCas.cs +System.CodeDom/CodeDefaultValueExpressionTest.cs +System.CodeDom/CodeDelegateCreateExpressionCas.cs +System.CodeDom/CodeDelegateCreateExpressionTest.cs +System.CodeDom/CodeDelegateInvokeExpressionCas.cs +System.CodeDom/CodeDirectionExpressionCas.cs +System.CodeDom/CodeDirectiveCas.cs +System.CodeDom/CodeDirectiveCollectionCas.cs +System.CodeDom/CodeDirectiveCollectionTest.cs +System.CodeDom/CodeEntryPointMethodCas.cs +System.CodeDom/CodeEventReferenceExpressionCas.cs +System.CodeDom/CodeEventReferenceExpressionTest.cs +System.CodeDom/CodeExpressionCas.cs +System.CodeDom/CodeExpressionCollectionCas.cs +System.CodeDom/CodeExpressionCollectionTest.cs +System.CodeDom/CodeExpressionStatementCas.cs +System.CodeDom/CodeFieldReferenceExpressionCas.cs +System.CodeDom/CodeGotoStatementCas.cs +System.CodeDom/CodeGotoStatementTest.cs +System.CodeDom/CodeIndexerExpressionCas.cs +System.CodeDom/CodeIterationStatementCas.cs +System.CodeDom/CodeLabeledStatementTest.cs +System.CodeDom/CodeLinePragmaCas.cs +System.CodeDom/CodeLinePragmaTest.cs +System.CodeDom/CodeMemberEventCas.cs +System.CodeDom/CodeMemberFieldCas.cs +System.CodeDom/CodeMemberFieldTest.cs +System.CodeDom/CodeMemberMethodCas.cs +System.CodeDom/CodeMemberMethodTest.cs +System.CodeDom/CodeMemberPropertyCas.cs +System.CodeDom/CodeMemberPropertyTest.cs +System.CodeDom/CodeMethodInvokeExpressionCas.cs +System.CodeDom/CodeMethodInvokeExpressionTest.cs +System.CodeDom/CodeMethodReferenceExpressionCas.cs +System.CodeDom/CodeMethodReferenceExpressionTest.cs +System.CodeDom/CodeMethodReturnStatementCas.cs +System.CodeDom/CodeNamespaceCas.cs +System.CodeDom/CodeNamespaceCollectionCas.cs +System.CodeDom/CodeNamespaceCollectionTest.cs +System.CodeDom/CodeNamespaceImportCas.cs +System.CodeDom/CodeNamespaceImportCollectionCas.cs +System.CodeDom/CodeNamespaceImportCollectionTest.cs +System.CodeDom/CodeNamespaceImportTest.cs +System.CodeDom/CodeNamespaceTest.cs +System.CodeDom/CodeObjectCas.cs +System.CodeDom/CodeObjectCreateExpressionCas.cs +System.CodeDom/CodeObjectCreateExpressionTest.cs +System.CodeDom/CodeParameterDeclarationExpressionCas.cs +System.CodeDom/CodeParameterDeclarationExpressionCollectionCas.cs +System.CodeDom/CodeParameterDeclarationExpressionCollectionTest.cs +System.CodeDom/CodeParameterDeclarationExpressionTest.cs +System.CodeDom/CodePrimitiveExpressionCas.cs +System.CodeDom/CodePropertyReferenceExpressionCas.cs +System.CodeDom/CodePropertyReferenceExpressionTest.cs +System.CodeDom/CodePropertySetValueReferenceExpressionCas.cs +System.CodeDom/CodeRegionDirectiveCas.cs +System.CodeDom/CodeRegionDirectiveTest.cs +System.CodeDom/CodeRemoveEventStatementCas.cs +System.CodeDom/CodeRemoveEventStatementTest.cs +System.CodeDom/CodeSnippetCompileUnitCas.cs +System.CodeDom/CodeSnippetCompileUnitTest.cs +System.CodeDom/CodeSnippetExpressionCas.cs +System.CodeDom/CodeSnippetExpressionTest.cs +System.CodeDom/CodeSnippetStatementCas.cs +System.CodeDom/CodeSnippetStatementTest.cs +System.CodeDom/CodeSnippetTypeMemberCas.cs +System.CodeDom/CodeSnippetTypeMemberTest.cs +System.CodeDom/CodeStatementCas.cs +System.CodeDom/CodeStatementCollectionCas.cs +System.CodeDom/CodeStatementCollectionTest.cs +System.CodeDom/CodeThisReferenceExpressionCas.cs +System.CodeDom/CodeThrowExceptionStatementCas.cs +System.CodeDom/CodeTryCatchFinallyStatementCas.cs +System.CodeDom/CodeTypeConstructorCas.cs +System.CodeDom/CodeTypeConstructorTest.cs +System.CodeDom/CodeTypeDeclarationCas.cs +System.CodeDom/CodeTypeDeclarationCollectionCas.cs +System.CodeDom/CodeTypeDeclarationCollectionTest.cs +System.CodeDom/CodeTypeDelegateCas.cs +System.CodeDom/CodeTypeDelegateTest.cs +System.CodeDom/CodeTypeMemberCas.cs +System.CodeDom/CodeTypeMemberCollectionCas.cs +System.CodeDom/CodeTypeMemberCollectionTest.cs +System.CodeDom/CodeTypeOfExpressionCas.cs +System.CodeDom/CodeTypeOfExpressionTest.cs +System.CodeDom/CodeTypeParameterCas.cs +System.CodeDom/CodeTypeParameterCollectionTest.cs +System.CodeDom/CodeTypeParameterTest.cs +System.CodeDom/CodeTypeReferenceCas.cs +System.CodeDom/CodeTypeReferenceCollectionCas.cs +System.CodeDom/CodeTypeReferenceCollectionTest.cs +System.CodeDom/CodeTypeReferenceExpressionCas.cs +System.CodeDom/CodeTypeReferenceExpressionTest.cs +System.CodeDom/CodeTypeReferenceTest.cs +System.CodeDom/CodeVariableDeclarationStatementCas.cs +System.CodeDom/CodeVariableDeclarationStatementTest.cs +System.CodeDom/CodeVariableReferenceExpressionCas.cs +System.CodeDom/CodeVariableReferenceExpressionTest.cs +System.Configuration.Provider +System.Configuration.Provider/ProviderBaseTest.cs +System.Configuration/ApplicationSettingsBaseTest.cs +System.Configuration/ConfigXmlDocumentTest.cs +System.Configuration/ConfigurationExceptionTest.cs +System.Configuration/LocalFileSettingsProviderTest.cs +System.Configuration/SettingElementTest.cs +System.Configuration/SettingsBaseTest.cs +System.Configuration/SettingsPropertyCollectionTest.cs +System.Configuration/SettingsPropertyTest.cs +System.Configuration/SettingsPropertyValueCollectionTest.cs +System.Configuration/SettingsPropertyValueTest.cs +System.IO.Ports/SerialPortTest.cs +System.Security.Permissions/ResourcePermissionBaseCas.cs +System.Security.Permissions/ResourcePermissionBaseEntryCas.cs +System.Security.Permissions/ResourcePermissionBaseEntryTest.cs +System.Security.Permissions/ResourcePermissionBaseTest.cs +System.Security.Permissions/StorePermissionAttributeCas.cs +System.Security.Permissions/StorePermissionAttributeTest.cs +System.Security.Permissions/StorePermissionCas.cs +System.Security.Permissions/StorePermissionTest.cs +System.Web/AspNetHostingPermissionAttributeCas.cs +System.Web/AspNetHostingPermissionAttributeTest.cs +System.Web/AspNetHostingPermissionCas.cs +System.Web/AspNetHostingPermissionTest.cs diff --git a/mcs/class/corlib/Makefile b/mcs/class/corlib/Makefile index 48de228a0b0..4d40d337125 100644 --- a/mcs/class/corlib/Makefile +++ b/mcs/class/corlib/Makefile @@ -68,7 +68,7 @@ DEFAULT_REFERENCES = TEST_LIB_REFS = System.Core System ifndef AOT_FRIENDLY_PROFILE -ifneq ($(PROFILE),aot_hybrid) +ifneq ($(PROFILE),testing_aot_hybrid) TEST_LIB_REFS += Mono.Posix endif endif diff --git a/mcs/class/corlib/aot_hybrid_corlib_test.dll.exclude.sources b/mcs/class/corlib/aot_hybrid_corlib_test.dll.exclude.sources deleted file mode 100644 index 9b651e6fc9e..00000000000 --- a/mcs/class/corlib/aot_hybrid_corlib_test.dll.exclude.sources +++ /dev/null @@ -1,22 +0,0 @@ -Microsoft.Win32/RegistryKeyTest.cs -System.Reflection/VisibilityTest.cs -System.Security.AccessControl/AuthorizationRuleTest.cs -System.Security.AccessControl/CommonAceTest.cs -System.Security.AccessControl/CommonAclTest.cs -System.Security.AccessControl/CommonObjectSecurityTest.cs -System.Security.AccessControl/CommonSecurityDescriptorTest.cs -System.Security.AccessControl/CryptoKeyAccessRuleTest.cs -System.Security.AccessControl/DirectoryObjectSecurityTest.cs -System.Security.AccessControl/DirectorySecurityTest.cs -System.Security.AccessControl/DiscretionaryAclTest.cs -System.Security.AccessControl/EventWaitHandleSecurityTest.cs -System.Security.AccessControl/FileSecurityTest.cs -System.Security.AccessControl/MutexAccessRuleTest.cs -System.Security.AccessControl/MutexSecurityTest.cs -System.Security.AccessControl/ObjectAceTest.cs -System.Security.AccessControl/ObjectSecurity_TTest.cs -System.Security.AccessControl/ObjectSecurityTest.cs -System.Security.AccessControl/RawAclTest.cs -System.Security.AccessControl/RawSecurityDescriptorTest.cs -System.Security.AccessControl/RegistrySecurityTest.cs -System.Security.AccessControl/SystemAclTest.cs diff --git a/mcs/class/corlib/testing_aot_hybrid_corlib_test.dll.exclude.sources b/mcs/class/corlib/testing_aot_hybrid_corlib_test.dll.exclude.sources new file mode 100644 index 00000000000..9b651e6fc9e --- /dev/null +++ b/mcs/class/corlib/testing_aot_hybrid_corlib_test.dll.exclude.sources @@ -0,0 +1,22 @@ +Microsoft.Win32/RegistryKeyTest.cs +System.Reflection/VisibilityTest.cs +System.Security.AccessControl/AuthorizationRuleTest.cs +System.Security.AccessControl/CommonAceTest.cs +System.Security.AccessControl/CommonAclTest.cs +System.Security.AccessControl/CommonObjectSecurityTest.cs +System.Security.AccessControl/CommonSecurityDescriptorTest.cs +System.Security.AccessControl/CryptoKeyAccessRuleTest.cs +System.Security.AccessControl/DirectoryObjectSecurityTest.cs +System.Security.AccessControl/DirectorySecurityTest.cs +System.Security.AccessControl/DiscretionaryAclTest.cs +System.Security.AccessControl/EventWaitHandleSecurityTest.cs +System.Security.AccessControl/FileSecurityTest.cs +System.Security.AccessControl/MutexAccessRuleTest.cs +System.Security.AccessControl/MutexSecurityTest.cs +System.Security.AccessControl/ObjectAceTest.cs +System.Security.AccessControl/ObjectSecurity_TTest.cs +System.Security.AccessControl/ObjectSecurityTest.cs +System.Security.AccessControl/RawAclTest.cs +System.Security.AccessControl/RawSecurityDescriptorTest.cs +System.Security.AccessControl/RegistrySecurityTest.cs +System.Security.AccessControl/SystemAclTest.cs diff --git a/mono/tests/Makefile.am b/mono/tests/Makefile.am index 3be63e5db1b..7e75e4f2d29 100644 --- a/mono/tests/Makefile.am +++ b/mono/tests/Makefile.am @@ -50,7 +50,7 @@ if INSTALL_TESTING_AOT_FULL PROFILE_MCS_FLAGS = -d:MOBILE,MOBILE_LEGACY,FULL_AOT_DESKTOP endif -if INSTALL_AOT_HYBRID +if INSTALL_TESTING_AOT_HYBRID PROFILE_MCS_FLAGS = -d:MOBILE,MOBILE_LEGACY endif @@ -840,7 +840,7 @@ PROFILE_DISABLED_TESTS += \ bug-515884.exe endif -if INSTALL_AOT_HYBRID +if INSTALL_TESTING_AOT_HYBRID PROFILE_DISABLED_TESTS += \ bug-80307.exe \ namedmutex-destroy-race.exe @@ -923,7 +923,7 @@ EXTRA_DIST=test-driver test-runner.cs $(TEST_CS_SRC_DIST) $(TEST_IL_SRC) \ $(ILASM) -out:$@ $< if !INSTALL_TESTING_AOT_FULL -if !INSTALL_AOT_HYBRID +if !INSTALL_TESTING_AOT_HYBRID TEST_DRIVER_HARD_KILL_FEATURE=-r:Mono.Posix.dll endif endif diff --git a/runtime/Makefile.am b/runtime/Makefile.am index d9fcbdac16b..fa969c3c958 100644 --- a/runtime/Makefile.am +++ b/runtime/Makefile.am @@ -48,8 +48,8 @@ if INSTALL_MONOTOUCH_TV build_profiles += monotouch_tv monotouch_tv_runtime endif -if INSTALL_AOT_HYBRID -build_profiles += aot_hybrid +if INSTALL_TESTING_AOT_HYBRID +build_profiles += testing_aot_hybrid endif if INSTALL_TESTING_AOT_FULL diff --git a/scripts/ci/run-test-aot_hybrid.sh b/scripts/ci/run-test-aot_hybrid.sh deleted file mode 100755 index 272ff9e454c..00000000000 --- a/scripts/ci/run-test-aot_hybrid.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash -e - -${TESTCMD} --label=mini --timeout=25m make -j 4 -w -C mono/mini -k aotcheck -${TESTCMD} --label=runtime --timeout=160m make -w -C mono/tests -k test-wrench V=1 CI=1 -${TESTCMD} --label=corlib --timeout=30m make -w -C mcs/class/corlib run-test -${TESTCMD} --label=verify --timeout=15m make -w -C runtime mcs-compileall -${TESTCMD} --label=profiler --timeout=30m make -w -C mono/profiler -k check -${TESTCMD} --label=System --timeout=10m make -w -C mcs/class/System run-test -${TESTCMD} --label=System.XML --timeout=5m make -w -C mcs/class/System.XML run-test -${TESTCMD} --label=Mono.Security --timeout=5m make -w -C mcs/class/Mono.Security run-test -${TESTCMD} --label=System.Data --timeout=5m make -w -C mcs/class/System.Data run-test -${TESTCMD} --label=System.Web.Services --timeout=5m make -w -C mcs/class/System.Web.Services run-test -${TESTCMD} --label=I18N.CJK --timeout=5m make -w -C mcs/class/I18N/CJK run-test -${TESTCMD} --label=I18N.West --timeout=5m make -w -C mcs/class/I18N/West run-test -${TESTCMD} --label=I18N.MidEast --timeout=5m make -w -C mcs/class/I18N/MidEast run-test -${TESTCMD} --label=System.Transactions --timeout=5m make -w -C mcs/class/System.Transactions run-test -${TESTCMD} --label=System.Core --timeout=15m make -w -C mcs/class/System.Core run-test -${TESTCMD} --label=System.Xml.Linq --timeout=5m make -w -C mcs/class/System.Xml.Linq run-test -${TESTCMD} --label=System.Runtime.Serialization --timeout=5m make -w -C mcs/class/System.Runtime.Serialization run-test -${TESTCMD} --label=System.ServiceModel --timeout=15m make -w -C mcs/class/System.ServiceModel run-test -${TESTCMD} --label=System.ServiceModel.Web --timeout=5m make -w -C mcs/class/System.ServiceModel.Web run-test -${TESTCMD} --label=System.ComponentModel.DataAnnotations --timeout=5m make -w -C mcs/class/System.ComponentModel.DataAnnotations run-test -${TESTCMD} --label=Mono.CSharp --timeout=5m make -w -C mcs/class/Mono.CSharp run-test -${TESTCMD} --label=System.Numerics --timeout=5m make -w -C mcs/class/System.Numerics run-test -${TESTCMD} --label=System.Net.Http --timeout=5m make -w -C mcs/class/System.Net.Http run-test -${TESTCMD} --label=System.Json --timeout=5m make -w -C mcs/class/System.Json run-test - -rm -fr /tmp/jenkins-temp-aspnet* diff --git a/scripts/ci/run-test-testing_aot_hybrid.sh b/scripts/ci/run-test-testing_aot_hybrid.sh new file mode 100755 index 00000000000..272ff9e454c --- /dev/null +++ b/scripts/ci/run-test-testing_aot_hybrid.sh @@ -0,0 +1,28 @@ +#!/bin/bash -e + +${TESTCMD} --label=mini --timeout=25m make -j 4 -w -C mono/mini -k aotcheck +${TESTCMD} --label=runtime --timeout=160m make -w -C mono/tests -k test-wrench V=1 CI=1 +${TESTCMD} --label=corlib --timeout=30m make -w -C mcs/class/corlib run-test +${TESTCMD} --label=verify --timeout=15m make -w -C runtime mcs-compileall +${TESTCMD} --label=profiler --timeout=30m make -w -C mono/profiler -k check +${TESTCMD} --label=System --timeout=10m make -w -C mcs/class/System run-test +${TESTCMD} --label=System.XML --timeout=5m make -w -C mcs/class/System.XML run-test +${TESTCMD} --label=Mono.Security --timeout=5m make -w -C mcs/class/Mono.Security run-test +${TESTCMD} --label=System.Data --timeout=5m make -w -C mcs/class/System.Data run-test +${TESTCMD} --label=System.Web.Services --timeout=5m make -w -C mcs/class/System.Web.Services run-test +${TESTCMD} --label=I18N.CJK --timeout=5m make -w -C mcs/class/I18N/CJK run-test +${TESTCMD} --label=I18N.West --timeout=5m make -w -C mcs/class/I18N/West run-test +${TESTCMD} --label=I18N.MidEast --timeout=5m make -w -C mcs/class/I18N/MidEast run-test +${TESTCMD} --label=System.Transactions --timeout=5m make -w -C mcs/class/System.Transactions run-test +${TESTCMD} --label=System.Core --timeout=15m make -w -C mcs/class/System.Core run-test +${TESTCMD} --label=System.Xml.Linq --timeout=5m make -w -C mcs/class/System.Xml.Linq run-test +${TESTCMD} --label=System.Runtime.Serialization --timeout=5m make -w -C mcs/class/System.Runtime.Serialization run-test +${TESTCMD} --label=System.ServiceModel --timeout=15m make -w -C mcs/class/System.ServiceModel run-test +${TESTCMD} --label=System.ServiceModel.Web --timeout=5m make -w -C mcs/class/System.ServiceModel.Web run-test +${TESTCMD} --label=System.ComponentModel.DataAnnotations --timeout=5m make -w -C mcs/class/System.ComponentModel.DataAnnotations run-test +${TESTCMD} --label=Mono.CSharp --timeout=5m make -w -C mcs/class/Mono.CSharp run-test +${TESTCMD} --label=System.Numerics --timeout=5m make -w -C mcs/class/System.Numerics run-test +${TESTCMD} --label=System.Net.Http --timeout=5m make -w -C mcs/class/System.Net.Http run-test +${TESTCMD} --label=System.Json --timeout=5m make -w -C mcs/class/System.Json run-test + +rm -fr /tmp/jenkins-temp-aspnet*