Skip to content

Commit

Permalink
Remove an apparently unneeded normcase() call.
Browse files Browse the repository at this point in the history
I believe this call is unneeded after https://reviews.llvm.org/D34855.

Reviewed as part of https://reviews.llvm.org/D78169
  • Loading branch information
nico authored and memfrob committed Oct 4, 2022
1 parent 4e9427f commit fbd5ba4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/utils/lit/lit/formats/googletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class GoogleTest(TestFormat):
def __init__(self, test_sub_dirs, test_suffix):
self.test_sub_dirs = os.path.normcase(str(test_sub_dirs)).split(';')
self.test_sub_dirs = str(test_sub_dirs).split(';')

# On Windows, assume tests will also end in '.exe'.
exe_suffix = str(test_suffix)
Expand Down

0 comments on commit fbd5ba4

Please sign in to comment.