Skip to content

Commit

Permalink
[lit] Add missing os.path.normcase() to config-map-discovery test
Browse files Browse the repository at this point in the history
5ccfa15 removed normalization from abs_path_preserve_drive but I missed adding this case back to the caller
  • Loading branch information
RKSimon committed Aug 2, 2023
1 parent 54458c5 commit d6f1880
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions llvm/utils/lit/tests/Inputs/config-map-discovery/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import sys

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

config_map = {main_config: sys.argv[2]}
builtin_parameters = {"config_map": config_map}
Expand Down

0 comments on commit d6f1880

Please sign in to comment.