Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 0 additions & 91 deletions tests/src/Common/CoreCLRTestLibrary/CalendarHelpers.cs

This file was deleted.

3 changes: 0 additions & 3 deletions tests/src/Common/CoreCLRTestLibrary/CoreCLRTestLibrary.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,7 @@
</CodeAnalysisDependentAssemblyPaths>
</ItemGroup>
<ItemGroup>
<Compile Include="CalendarHelpers.cs" />
<Compile Include="EndianessChecker.cs" />
<Compile Include="Generator.cs" />
<Compile Include="GlobLocHelper.cs" />
<Compile Include="Logging.cs" />
<Compile Include="TestFramework.cs" />
<Compile Include="Utilities.cs" />
Expand Down
34 changes: 0 additions & 34 deletions tests/src/Common/CoreCLRTestLibrary/EndianessChecker.cs

This file was deleted.

15 changes: 0 additions & 15 deletions tests/src/Common/CoreCLRTestLibrary/Generator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -320,21 +320,6 @@ public static Char GetChar(bool allowsurrogate, bool allownoweight)
return c;
}

// if value is no-weight char, return true
public static bool NoWeightChar(int value)
{
if ((int)'a' == value) // 'a' = 97
return false;

String strA = "a" + Convert.ToChar(value);
String strB = "a";

if (0 == GlobLocHelper.OSCompare(CultureInfo.CurrentCulture, strA, 0, 2, strB, 0, 1, CompareOptions.None))
return true;

return false;
}

// returns a string. If "validPath" is set, only valid path characters
// will be included
public static string GetString(Int32 new_seed, Boolean validPath, Int32 minLength, Int32 maxLength)
Expand Down
Loading