From: Nico Weber Date: Wed, 15 Apr 2020 18:02:01 +0000 (-0400) Subject: Remove an apparently unneeded normcase() call. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f42baaab4f86d5259717bd26f713c002fd225669;p=platform%2Fupstream%2Fllvm.git 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 --- diff --git a/llvm/utils/lit/lit/formats/googletest.py b/llvm/utils/lit/lit/formats/googletest.py index 6696fab..777568b 100644 --- a/llvm/utils/lit/lit/formats/googletest.py +++ b/llvm/utils/lit/lit/formats/googletest.py @@ -12,7 +12,7 @@ kIsWindows = sys.platform in ['win32', 'cygwin'] 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)