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 /test/Mono.Linker.Tests
parent3f88054e9acc755f001830d5428cd9722750092d (diff)
Fix typo: msc -> msc
Diffstat (limited to 'test/Mono.Linker.Tests')
-rw-r--r--test/Mono.Linker.Tests/TestCasesRunner/TestCaseCompiler.cs4
1 files changed, 2 insertions, 2 deletions
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}`");
}