Fix various LastIndexOf bugs when given zero-length target values (#34616)
authorLevi Broderick <GrabYourPitchforks@users.noreply.github.com>
Tue, 7 Apr 2020 19:16:24 +0000 (12:16 -0700)
committerGitHub <noreply@github.com>
Tue, 7 Apr 2020 19:16:24 +0000 (12:16 -0700)
commitc4507d795038c41fc041276e0737045262f9980d
treefe076855b1c14f6d2e4b6e6a987e16027488a8c7
parentf8d38f45e1a109a8f6895a4a6f82c4d00108e1d4
Fix various LastIndexOf bugs when given zero-length target values (#34616)

- string.LastIndexOf(string.Empty) shouldn't perform -1 adjustment
- MemoryExtensions.LastIndexOf(ROS<char>, string.Empty) shouldn't return 0
- Tighten up some existing unit tests
24 files changed:
src/libraries/Common/tests/Tests/System/StringTests.cs
src/libraries/System.Globalization/tests/CompareInfo/CompareInfoTests.LastIndexOf.cs
src/libraries/System.Globalization/tests/CompareInfo/CompareInfoTests.cs
src/libraries/System.Globalization/tests/Invariant/InvariantMode.cs
src/libraries/System.Memory/tests/ReadOnlySpan/IndexOfSequence.T.cs
src/libraries/System.Memory/tests/ReadOnlySpan/IndexOfSequence.byte.cs
src/libraries/System.Memory/tests/ReadOnlySpan/LastIndexOfSequence.T.cs
src/libraries/System.Memory/tests/ReadOnlySpan/LastIndexOfSequence.byte.cs
src/libraries/System.Memory/tests/Span/IndexOfSequence.T.cs
src/libraries/System.Memory/tests/Span/IndexOfSequence.byte.cs
src/libraries/System.Memory/tests/Span/IndexOfSequence.char.cs
src/libraries/System.Memory/tests/Span/LastIndexOfSequence.T.cs
src/libraries/System.Memory/tests/Span/LastIndexOfSequence.byte.cs
src/libraries/System.Memory/tests/Span/LastIndexOfSequence.char.cs
src/libraries/System.Memory/tests/TestHelpers.cs
src/libraries/System.Private.CoreLib/src/System/Globalization/CompareInfo.Invariant.cs
src/libraries/System.Private.CoreLib/src/System/Globalization/CompareInfo.Unix.cs
src/libraries/System.Private.CoreLib/src/System/Globalization/CompareInfo.Windows.cs
src/libraries/System.Private.CoreLib/src/System/Globalization/CompareInfo.cs
src/libraries/System.Private.CoreLib/src/System/MemoryExtensions.Globalization.cs
src/libraries/System.Private.CoreLib/src/System/SpanHelpers.Byte.cs
src/libraries/System.Private.CoreLib/src/System/SpanHelpers.T.cs
src/libraries/System.Private.CoreLib/src/System/String.Comparison.cs
src/libraries/System.Private.CoreLib/src/System/String.Searching.cs