From: Sergey Andreenko Date: Thu, 6 Jun 2019 04:38:08 +0000 (-0700) Subject: Delete TwoKeywords test. (#24982) X-Git-Tag: accepted/tizen/unified/20190813.215958~40^2~258 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1a495118c005b9a5409c81fea1813bd2b3044cbd;p=platform%2Fupstream%2Fcoreclr.git Delete TwoKeywords test. (#24982) --- diff --git a/tests/issues.targets b/tests/issues.targets index 7025efb..a8117c8 100644 --- a/tests/issues.targets +++ b/tests/issues.targets @@ -68,9 +68,6 @@ 19406 - - 23224, often fails with timeout in release - 20299 diff --git a/tests/src/tracing/keyword/TwoKeywords/TwoKeywords.cs b/tests/src/tracing/keyword/TwoKeywords/TwoKeywords.cs deleted file mode 100644 index 89b38ce..0000000 --- a/tests/src/tracing/keyword/TwoKeywords/TwoKeywords.cs +++ /dev/null @@ -1,52 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System; -using System.Diagnostics.Tracing; -using System.IO; -using System.Reflection; -using System.Threading; -using System.Threading.Tasks; -using Tracing.Tests.Common; - -using Microsoft.Diagnostics.Tracing; -using Microsoft.Diagnostics.Tracing.Parsers.Clr; - -namespace Tracing.Tests -{ - public static class TwoKeywordsTest - { - public static int Main(string[] args) - { - return new TwoKeywordsTraceTest().Execute(); - } - } - - public class TwoKeywordsTraceTest : AbstractTraceTest - { - private bool pass; - - protected override string GetConfigFileContents() - { - return @" -OutputPath=. -CircularMB=2048 -Providers=My-Simple-Event-Source:0xFFFFFFFFFFFFFFFF:5:Key1=Value1;Key2=Value2 -";; - } - - public override void OnEventCommand(object sender, EventCommandEventArgs command) - { - if (command.Command == EventCommand.Enable) - { - this.pass = (command.Arguments.Count == 2); - } - } - - protected override bool Pass() - { - return this.pass; - } - } -} diff --git a/tests/src/tracing/keyword/TwoKeywords/TwoKeywords.csproj b/tests/src/tracing/keyword/TwoKeywords/TwoKeywords.csproj deleted file mode 100644 index e5882f0..0000000 --- a/tests/src/tracing/keyword/TwoKeywords/TwoKeywords.csproj +++ /dev/null @@ -1,33 +0,0 @@ - - - - - Debug - AnyCPU - 2.0 - {8E3244CB-407F-4142-BAAB-E7A55901A5FA} - Exe - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - ..\..\ - BuildAndRun - $(DefineConstants);STATIC - 0 - true - - true - true - - - - - - - False - - - - - - - - \ No newline at end of file