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:
authorbrian-taylor-unity <52750961+brian-taylor-unity@users.noreply.github.com>2020-09-17 13:08:26 +0300
committerGitHub <noreply@github.com>2020-09-17 13:08:26 +0300
commitc4dfe604645b0956fdddf574835d0a3ff56f6d3a (patch)
tree42a871590eeec68446a0748324baa7b5099a156e /test/Mono.Linker.Tests.Cases/DataFlow
parentcc5c0f934dd37330a6e7484aced73d93771fc324 (diff)
Remove unused using directive from some test cases (#1494)
Diffstat (limited to 'test/Mono.Linker.Tests.Cases/DataFlow')
-rw-r--r--test/Mono.Linker.Tests.Cases/DataFlow/IReflectDataflow.cs7
-rw-r--r--test/Mono.Linker.Tests.Cases/DataFlow/PropertyDataFlow.cs3
2 files changed, 4 insertions, 6 deletions
diff --git a/test/Mono.Linker.Tests.Cases/DataFlow/IReflectDataflow.cs b/test/Mono.Linker.Tests.Cases/DataFlow/IReflectDataflow.cs
index 4d7de68c8..2b53fdca2 100644
--- a/test/Mono.Linker.Tests.Cases/DataFlow/IReflectDataflow.cs
+++ b/test/Mono.Linker.Tests.Cases/DataFlow/IReflectDataflow.cs
@@ -1,17 +1,18 @@
using System;
-using System.Collections.Generic;
-using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.Reflection;
-using System.Text;
using Mono.Linker.Tests.Cases.Expectations.Assertions;
namespace Mono.Linker.Tests.Cases.DataFlow
{
// Hits what appears to be a bug in the tool
// Could not initialize vtable of class(0x02000007) .MyReflect due to VTable setup of type Mono.Linker.Tests.Cases.DataFlow.IReflectDataflow+MyReflect failed assembly:/tmp/linker_tests/output/test.exe type:MyReflect member:(null)
+#if ILLINK
[SkipPeVerify (SkipPeVerifyForToolchian.Pedump)]
+#else
+ [SkipPeVerify]
+#endif
class IReflectDataflow
{
public static void Main ()
diff --git a/test/Mono.Linker.Tests.Cases/DataFlow/PropertyDataFlow.cs b/test/Mono.Linker.Tests.Cases/DataFlow/PropertyDataFlow.cs
index 72acb4ec1..d6ee5cab7 100644
--- a/test/Mono.Linker.Tests.Cases/DataFlow/PropertyDataFlow.cs
+++ b/test/Mono.Linker.Tests.Cases/DataFlow/PropertyDataFlow.cs
@@ -3,11 +3,8 @@
// See the LICENSE file in the project root for more information.
using System;
-using System.Collections.Generic;
-using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;
-using System.Text;
using Mono.Linker.Tests.Cases.Expectations.Assertions;
namespace Mono.Linker.Tests.Cases.DataFlow