Skip to content

Commit d6f1880

Browse files
committed
[lit] Add missing os.path.normcase() to config-map-discovery test
5ccfa15 removed normalization from abs_path_preserve_drive but I missed adding this case back to the caller
1 parent 54458c5 commit d6f1880

File tree

1 file changed

+1
-0
lines changed
  • llvm/utils/lit/tests/Inputs/config-map-discovery

1 file changed

+1
-0
lines changed

llvm/utils/lit/tests/Inputs/config-map-discovery/driver.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import sys
44

55
main_config = lit.util.abs_path_preserve_drive(sys.argv[1])
6+
main_config = os.path.normcase(main_config)
67

78
config_map = {main_config: sys.argv[2]}
89
builtin_parameters = {"config_map": config_map}

0 commit comments

Comments
 (0)