Skip to content

Commit f42baaa

Browse files
committed
Remove an apparently unneeded normcase() call.
I believe this call is unneeded after https://reviews.llvm.org/D34855. Reviewed as part of https://reviews.llvm.org/D78169
1 parent 8e7d771 commit f42baaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/utils/lit/lit/formats/googletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
class GoogleTest(TestFormat):
1414
def __init__(self, test_sub_dirs, test_suffix):
15-
self.test_sub_dirs = os.path.normcase(str(test_sub_dirs)).split(';')
15+
self.test_sub_dirs = str(test_sub_dirs).split(';')
1616

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

0 commit comments

Comments
 (0)