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:
authorSven Boemer <sbomer@gmail.com>2019-03-13 01:22:31 +0300
committerMarek Safar <marek.safar@gmail.com>2019-03-20 22:09:31 +0300
commit9e655107a3ee7c74fce905df1b9c48cc18041e68 (patch)
tree648626f51a7ff4186aaebe278c5ab5eb3a57c306
parent3f88054e9acc755f001830d5428cd9722750092d (diff)
Fix typo: msc -> msc
-rw-r--r--test/Mono.Linker.Tests.Cases/Mono.Linker.Tests.Cases.csproj2
-rw-r--r--test/Mono.Linker.Tests.Cases/TestFramework/CanCompileTestCaseWithMcs.cs (renamed from test/Mono.Linker.Tests.Cases/TestFramework/CanCompileTestCaseWithMsc.cs)2
-rw-r--r--test/Mono.Linker.Tests/TestCasesRunner/TestCaseCompiler.cs4
3 files changed, 4 insertions, 4 deletions
diff --git a/test/Mono.Linker.Tests.Cases/Mono.Linker.Tests.Cases.csproj b/test/Mono.Linker.Tests.Cases/Mono.Linker.Tests.Cases.csproj
index 49d3477ad..a68e5a655 100644
--- a/test/Mono.Linker.Tests.Cases/Mono.Linker.Tests.Cases.csproj
+++ b/test/Mono.Linker.Tests.Cases/Mono.Linker.Tests.Cases.csproj
@@ -414,7 +414,7 @@
<Compile Include="TestFramework\CanCompileReferencesWithResourcesWithMcs.cs" />
<Compile Include="TestFramework\CanCompileTestCaseWithDebugPdbs.cs" />
<Compile Include="TestFramework\CanCompileTestCaseWithCsc.cs" />
- <Compile Include="TestFramework\CanCompileTestCaseWithMsc.cs" />
+ <Compile Include="TestFramework\CanCompileTestCaseWithMcs.cs" />
<Compile Include="TestFramework\CanSandboxDependenciesUsingType.cs" />
<Compile Include="TestFramework\CanVerifyInterfacesOnTypesInAssembly.cs" />
<Compile Include="TestFramework\Dependencies\CanCompileReferencesUsingTypes_LibSource1.cs" />
diff --git a/test/Mono.Linker.Tests.Cases/TestFramework/CanCompileTestCaseWithMsc.cs b/test/Mono.Linker.Tests.Cases/TestFramework/CanCompileTestCaseWithMcs.cs
index 7bafdc3d2..9ef9a9929 100644
--- a/test/Mono.Linker.Tests.Cases/TestFramework/CanCompileTestCaseWithMsc.cs
+++ b/test/Mono.Linker.Tests.Cases/TestFramework/CanCompileTestCaseWithMcs.cs
@@ -19,7 +19,7 @@ namespace Mono.Linker.Tests.Cases.TestFramework {
[KeptResource ("CanCompileTestCaseWithMcs.txt")]
[KeptMemberInAssembly ("library.dll", typeof (CanCompileTestCaseWithMcs_Lib), "Used()")]
- class CanCompileTestCaseWithMsc {
+ class CanCompileTestCaseWithMcs {
static void Main ()
{
#if VERIFY_DEFINE_WORKS
diff --git a/test/Mono.Linker.Tests/TestCasesRunner/TestCaseCompiler.cs b/test/Mono.Linker.Tests/TestCasesRunner/TestCaseCompiler.cs
index afa1eb6a3..ecf8ecc1e 100644
--- a/test/Mono.Linker.Tests/TestCasesRunner/TestCaseCompiler.cs
+++ b/test/Mono.Linker.Tests/TestCasesRunner/TestCaseCompiler.cs
@@ -202,7 +202,7 @@ namespace Mono.Linker.Tests.TestCasesRunner {
return CompileCSharpAssemblyWithExternalCompiler (LocateCscExecutable (), options);
}
- protected virtual NPath CompileCSharpAssemblyWithMsc(CompilerOptions options)
+ protected virtual NPath CompileCSharpAssemblyWithMcs(CompilerOptions options)
{
if (Environment.OSVersion.Platform == PlatformID.Win32NT)
CompileCSharpAssemblyWithExternalCompiler (LocateMcsExecutable (), options);
@@ -321,7 +321,7 @@ namespace Mono.Linker.Tests.TestCasesRunner {
return CompileCSharpAssemblyWithCsc (options);
if (options.CompilerToUse == "mcs")
- return CompileCSharpAssemblyWithMsc (options);
+ return CompileCSharpAssemblyWithMcs (options);
throw new ArgumentException ($"Invalid compiler value `{options.CompilerToUse}`");
}