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:
authorMateo Torres-Ruiz <mateoatr@users.noreply.github.com>2021-09-01 01:52:45 +0300
committerGitHub <noreply@github.com>2021-09-01 01:52:45 +0300
commit7793a2367790bfbd8418e725e8b9751a11278cfb (patch)
treeec9cdae0c6ca23e9df9706681a1a7b90efdaf2a8 /test/Mono.Linker.Tests
parent0f0d5c6af4100327906b14c7489848e2398b227a (diff)
Normalize warning messages (#2243)
* Normalize warning messages * Apply suggestions from code review Co-authored-by: Sven Boemer <sbomer@gmail.com> * Update expected logged message Co-authored-by: Sven Boemer <sbomer@gmail.com>
Diffstat (limited to 'test/Mono.Linker.Tests')
-rw-r--r--test/Mono.Linker.Tests/TestCases/TestSuites.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Mono.Linker.Tests/TestCases/TestSuites.cs b/test/Mono.Linker.Tests/TestCases/TestSuites.cs
index 045d2a9e6..3a07cbc77 100644
--- a/test/Mono.Linker.Tests/TestCases/TestSuites.cs
+++ b/test/Mono.Linker.Tests/TestCases/TestSuites.cs
@@ -47,10 +47,10 @@ namespace Mono.Linker.Tests.TestCases
public void CodegenAnnotationTests (TestCase testCase)
{
if (Environment.OSVersion.Platform == PlatformID.Win32NT)
- Assert.Ignore ("These tests are not valid when linking against .NET Framework");
+ Assert.Ignore ("These tests are not valid when trimming .NET Framework");
#if NETCOREAPP
- Assert.Ignore ("These tests are not valid when linking against .NET Core");
+ Assert.Ignore ("These tests are not valid when trimming .NET Core");
#endif
Run (testCase);
}