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

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'linker/Tests/TestCasesRunner/TestCaseMetadaProvider.cs')
-rw-r--r--linker/Tests/TestCasesRunner/TestCaseMetadaProvider.cs11
1 files changed, 5 insertions, 6 deletions
diff --git a/linker/Tests/TestCasesRunner/TestCaseMetadaProvider.cs b/linker/Tests/TestCasesRunner/TestCaseMetadaProvider.cs
index 67eb9814c..1a6e96312 100644
--- a/linker/Tests/TestCasesRunner/TestCaseMetadaProvider.cs
+++ b/linker/Tests/TestCasesRunner/TestCaseMetadaProvider.cs
@@ -26,12 +26,11 @@ namespace Mono.Linker.Tests.TestCasesRunner {
public virtual TestCaseLinkerOptions GetLinkerOptions ()
{
- // This will end up becoming more complicated as we get into more complex test cases that require additional
- // data
- var coreLink = GetOptionAttributeValue (nameof (CoreLinkAttribute), "skip");
- var il8n = GetOptionAttributeValue (nameof (Il8nAttribute), string.Empty);
- var blacklist = GetOptionAttributeValue (nameof (IncludeBlacklistStepAttribute), string.Empty);
- return new TestCaseLinkerOptions {CoreLink = coreLink, Il8n = il8n, IncludeBlacklistStep = blacklist};
+ return new TestCaseLinkerOptions {
+ CoreLink = GetOptionAttributeValue (nameof (CoreLinkAttribute), "skip"),
+ Il8n = GetOptionAttributeValue (nameof (Il8nAttribute), string.Empty),
+ IncludeBlacklistStep = GetOptionAttributeValue (nameof (IncludeBlacklistStepAttribute), false)
+ };
}
public virtual IEnumerable<string> GetReferencedAssemblies (NPath workingDirectory)