summaryrefslogtreecommitdiff
path: root/tests/src
diff options
context:
space:
mode:
authorJohn Doe <github.john.doe@outlook.com>2017-08-09 11:09:28 -0700
committerJan Kotas <jkotas@microsoft.com>2017-08-09 11:09:28 -0700
commit3c0d40ffd18bf5df20f3aef51a01e2a283998682 (patch)
tree98a79404539e3459fa08daaad42517e46976b3ae /tests/src
parentd076cd44b309d6b99fdad34c5156126f045c0933 (diff)
downloadcoreclr-3c0d40ffd18bf5df20f3aef51a01e2a283998682.tar.gz
coreclr-3c0d40ffd18bf5df20f3aef51a01e2a283998682.tar.bz2
coreclr-3c0d40ffd18bf5df20f3aef51a01e2a283998682.zip
typo (#13287)
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/CoreMangLib/cti/system/string/stringcompareordinal2.cs4
-rw-r--r--tests/src/GC/Performance/Tests/GCSimulator.cs2
-rw-r--r--tests/src/GC/Scenarios/GCSimulator/GCSimulator.cs2
-rw-r--r--tests/src/GC/Stress/Tests/GCSimulator.cs2
-rw-r--r--tests/src/Interop/MarshalAPI/OffsetOf/OffsetOf.cs2
-rw-r--r--tests/src/Loader/classloader/regressions/434481/b434481_genericrecurinit.cs8
6 files changed, 10 insertions, 10 deletions
diff --git a/tests/src/CoreMangLib/cti/system/string/stringcompareordinal2.cs b/tests/src/CoreMangLib/cti/system/string/stringcompareordinal2.cs
index 0e84ab9f66..59b631b0da 100644
--- a/tests/src/CoreMangLib/cti/system/string/stringcompareordinal2.cs
+++ b/tests/src/CoreMangLib/cti/system/string/stringcompareordinal2.cs
@@ -163,7 +163,7 @@ public class StringCompareOrdinal2
int ActualResult = string.CompareOrdinal(strA, indexA, strB, indexB, length);
if (ActualResult < 0 || ActualResult == 0)
{
- TestLibrary.TestFramework.LogError("005", "Null string and not null string CompareOrdinal Expected Result is less 0£¬Actual Result is ( " + ActualResult + ")");
+ TestLibrary.TestFramework.LogError("005", "Null string and not null string CompareOrdinal Expected Result is less 0,Actual Result is ( " + ActualResult + ")");
retVal = false;
}
}
@@ -195,7 +195,7 @@ public class StringCompareOrdinal2
int ActualResult = string.CompareOrdinal(strA, indexA, strB, indexB, length);
if (ActualResult != 0)
{
- TestLibrary.TestFramework.LogError("007", "Two like not NullStrings CompareOrdinal one ExpectResult is 0,ActulResult is (" + ActualResult + ")");
+ TestLibrary.TestFramework.LogError("007", "Two like not NullStrings CompareOrdinal one ExpectResult is 0,ActualResult is (" + ActualResult + ")");
retVal = false;
}
}
diff --git a/tests/src/GC/Performance/Tests/GCSimulator.cs b/tests/src/GC/Performance/Tests/GCSimulator.cs
index ce7836a41c..16b9498078 100644
--- a/tests/src/GC/Performance/Tests/GCSimulator.cs
+++ b/tests/src/GC/Performance/Tests/GCSimulator.cs
@@ -91,7 +91,7 @@ namespace GCSimulator
/// <summary>
/// we might want to implement a different strategy that decide the life time of the object based on the time
- /// elabsed since the last object acceess.
+ /// elapsed since the last object access.
///
/// </summary>
class TimeBasedLifeTimeStrategy : LifeTimeStrategy
diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator.cs b/tests/src/GC/Scenarios/GCSimulator/GCSimulator.cs
index 72f73b307c..803fca2706 100644
--- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator.cs
+++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator.cs
@@ -91,7 +91,7 @@ namespace GCSimulator
/// <summary>
/// we might want to implement a different strategy that decide the life time of the object based on the time
- /// elabsed since the last object acceess.
+ /// elapsed since the last object access.
///
/// </summary>
class TimeBasedLifeTimeStrategy : LifeTimeStrategy
diff --git a/tests/src/GC/Stress/Tests/GCSimulator.cs b/tests/src/GC/Stress/Tests/GCSimulator.cs
index 0350f65185..32a95f5f09 100644
--- a/tests/src/GC/Stress/Tests/GCSimulator.cs
+++ b/tests/src/GC/Stress/Tests/GCSimulator.cs
@@ -365,7 +365,7 @@ namespace GCSimulator
/// <summary>
/// we might want to implement a different strategy that decide the life time of the object based on the time
- /// elabsed since the last object acceess.
+ /// elapsed since the last object access.
///
/// </summary>
internal class TimeBasedLifeTimeStrategy : LifeTimeStrategy
diff --git a/tests/src/Interop/MarshalAPI/OffsetOf/OffsetOf.cs b/tests/src/Interop/MarshalAPI/OffsetOf/OffsetOf.cs
index 3c126158d0..5bb4715f4d 100644
--- a/tests/src/Interop/MarshalAPI/OffsetOf/OffsetOf.cs
+++ b/tests/src/Interop/MarshalAPI/OffsetOf/OffsetOf.cs
@@ -135,7 +135,7 @@ struct FieldAlignementTest_Decimal
// The largest field in below struct is decimal (16 bytes wide).
// However, alignment requirement for the below struct should be only 8 bytes (not 16).
// This is because unlike fields of other types well known to mcg (like long, char etc.)
- // which need to be aligned accoring to their byte size, decimal is really a struct
+ // which need to be aligned according to their byte size, decimal is really a struct
// with 8 byte alignment requirement.
public FieldAlignementTest p; // 80 bytes
diff --git a/tests/src/Loader/classloader/regressions/434481/b434481_genericrecurinit.cs b/tests/src/Loader/classloader/regressions/434481/b434481_genericrecurinit.cs
index 2d37258573..57c9dfd27b 100644
--- a/tests/src/Loader/classloader/regressions/434481/b434481_genericrecurinit.cs
+++ b/tests/src/Loader/classloader/regressions/434481/b434481_genericrecurinit.cs
@@ -17,7 +17,7 @@ internal class Program
if( tstr != "Program+S`1[System.Int32]" )
{
Console.WriteLine( "Err_01: Expected type: Program+S`1[System.Int32]" );
- Console.WriteLine( "Err_01: Actualy get type: " + tstr );
+ Console.WriteLine( "Err_01: Actually get type: " + tstr );
iErrorCount++;
}
S<object> o = new S<object>();
@@ -26,7 +26,7 @@ internal class Program
if( tstr != "Program+S`1[System.Object]" )
{
Console.WriteLine( "Err_02: Expected type: Program+S`1[System.Object]" );
- Console.WriteLine( "Err_02: Actualy get type: " + tstr );
+ Console.WriteLine( "Err_02: Actually get type: " + tstr );
iErrorCount++;
}
@@ -36,7 +36,7 @@ internal class Program
if( tstr != "Program+S`1[System.String]" )
{
Console.WriteLine( "Err_01: Expected type: Program+S`1[System.String]" );
- Console.WriteLine( "Err_01: Actualy get type: " + tstr );
+ Console.WriteLine( "Err_01: Actually get type: " + tstr );
iErrorCount++;
}
S<Program> p = new S<Program>();
@@ -45,7 +45,7 @@ internal class Program
if( tstr != "Program+S`1[Program]" )
{
Console.WriteLine( "Err_01: Expected type: Program+S`1[Program]" );
- Console.WriteLine( "Err_01: Actualy get type: " + tstr );
+ Console.WriteLine( "Err_01: Actually get type: " + tstr );
iErrorCount++;
}
}catch( Exception e)