[PATCH] D78169: [lit] Keep original cfg file case around.

Nico Weber via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 14 17:25:43 PDT 2020


thakis marked 2 inline comments as done.
thakis added inline comments.


================
Comment at: llvm/utils/lit/lit/formats/googletest.py:15
     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(';')
 
----------------
This is somewhat unrelated; I believe this call is unneeded after https://reviews.llvm.org/D34855


================
Comment at: llvm/utils/lit/lit/util.py:19
-    path = os.path.normcase(path)
-    return path
-
----------------
This is also unrelated; this function seems to be dead.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D78169/new/

https://reviews.llvm.org/D78169





More information about the llvm-commits mailing list