RKSimon added inline comments.

================
Comment at: llvm/utils/lit/lit/discovery.py:60
+            cfgpath = util.abs_path_preserve_drive(cfgpath)
+            target = config_map.get(cfgpath)
             if target:
----------------
Found the problem - you have moved the os.path.normpath call inside 
abs_path_preserve_drive, causing the path canonicalization fails - removing it 
and going back to os.path.normcase(cfgpath) seems to fix the issue - I'll push 
my fix shortly.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D154130

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to