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:
authorMarek Safar <marek.safar@gmail.com>2017-08-17 12:03:14 +0300
committerMarek Safar <marek.safar@gmail.com>2017-08-17 19:56:33 +0300
commit2ed84d2fe02981a7115a522b7c06587aedcec61c (patch)
tree25ed59cd88ccebf34554c7e1e0cba4dbbd5d6f48 /linker/Tests/Mono.Linker.Tests.Cases.Expectations
parent67116e0a7399ae668ede7985aaeb1c0e785683bb (diff)
Don't include BlackListStep in atest run by default
Diffstat (limited to 'linker/Tests/Mono.Linker.Tests.Cases.Expectations')
-rw-r--r--linker/Tests/Mono.Linker.Tests.Cases.Expectations/Metadata/IncludeBlacklistStepAttribute.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/linker/Tests/Mono.Linker.Tests.Cases.Expectations/Metadata/IncludeBlacklistStepAttribute.cs b/linker/Tests/Mono.Linker.Tests.Cases.Expectations/Metadata/IncludeBlacklistStepAttribute.cs
index 09512704b..4144abcf6 100644
--- a/linker/Tests/Mono.Linker.Tests.Cases.Expectations/Metadata/IncludeBlacklistStepAttribute.cs
+++ b/linker/Tests/Mono.Linker.Tests.Cases.Expectations/Metadata/IncludeBlacklistStepAttribute.cs
@@ -1,8 +1,8 @@
namespace Mono.Linker.Tests.Cases.Expectations.Metadata {
public sealed class IncludeBlacklistStepAttribute : BaseMetadataAttribute {
- public readonly string Value;
+ public readonly bool Value;
- public IncludeBlacklistStepAttribute (string value)
+ public IncludeBlacklistStepAttribute (bool value)
{
Value = value;
}