This reverts commit bc3f54de1827e58655c34477d09211cbc42589bd. The patch breaks in the following two scenarios: 1. When manually passing an absolute path to llvm-lit with a lower-case drive letter: `python bin\llvm-lit.py -sv c:\llvm-project\clang\test\PCH` 2. When the PWD has a lower-case drive letter, like after running `cd c:\` with a lower-case "c:" (cmd's default is upper-case, but it takes case-ness from what's passed to `cd` apparently).
17 lines
443 B
Python
17 lines
443 B
Python
import lit.util
|
|
import os
|
|
import sys
|
|
|
|
main_config = sys.argv[1]
|
|
main_config = os.path.realpath(main_config)
|
|
main_config = os.path.normcase(main_config)
|
|
|
|
config_map = {main_config : sys.argv[2]}
|
|
builtin_parameters = {'config_map' : config_map}
|
|
|
|
if __name__=='__main__':
|
|
from lit.main import main
|
|
main_config_dir = os.path.dirname(main_config)
|
|
sys.argv = [sys.argv[0]] + sys.argv[3:] + [main_config_dir]
|
|
main(builtin_parameters)
|