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

CanIncludeI18nAssemblies.cs « CoreLink « Mono.Linker.Tests.Cases « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28223435ef13ce00ce10d2765079d6d05323e584 (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
using Mono.Linker.Tests.Cases.Expectations.Assertions;
using Mono.Linker.Tests.Cases.Expectations.Metadata;

namespace Mono.Linker.Tests.Cases.CoreLink {
	[SetupLinkerCoreAction ("link")]
	[Il8n ("all")]
	
	// i18n assemblies should only be included when processing mono class libs.  By forcing this test to use mcs,
	// we can ensure the test will be ignored when the test runs against .net fw assemblies.
	[SetupCSharpCompilerToUse ("mcs")]
	
	[KeptAssembly ("I18N.dll")]
	[KeptAssembly ("I18N.CJK.dll")]
	[KeptAssembly ("I18N.MidEast.dll")]
	[KeptAssembly ("I18N.Other.dll")]
	[KeptAssembly ("I18N.Rare.dll")]
	[KeptAssembly ("I18N.West.dll")]
	
	[SkipPeVerify (SkipPeVerifyForToolchian.Pedump)]
	public class CanIncludeI18nAssemblies {
		public static void Main ()
		{
		}
	}
}