Remove an apparently unneeded normcase() call.
authorNico Weber <thakis@chromium.org>
Wed, 15 Apr 2020 18:02:01 +0000 (14:02 -0400)
committerNico Weber <thakis@chromium.org>
Wed, 15 Apr 2020 18:02:48 +0000 (14:02 -0400)
I believe this call is unneeded after https://reviews.llvm.org/D34855.

Reviewed as part of https://reviews.llvm.org/D78169

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

index 6696fab..777568b 100644 (file)
@@ -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)