[lldb] Fix lldb-dotest.in to use args determined by CMake (#124811)

This change is required as a result of the changes made in D132642
(bb26ebb4d18c1877cc6fd17aa803609abeb95096).
This commit is contained in:
Dave Lee 2025-01-28 13:36:40 -08:00 committed by GitHub
parent 9d7999885a
commit e89e7c4685
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,7 +4,8 @@ import subprocess
import sys
dotest_path = '@LLDB_SOURCE_DIR_CONFIGURED@/test/API/dotest.py'
dotest_args_str = '@LLDB_DOTEST_ARGS_CONFIGURED@'
dotest_common_args_str = '@LLDB_TEST_COMMON_ARGS_CONFIGURED@'
dotest_user_args_str = '@LLDB_TEST_USER_ARGS_CONFIGURED@'
arch = '@LLDB_TEST_ARCH@'
executable = '@LLDB_TEST_EXECUTABLE_CONFIGURED@'
compiler = '@LLDB_TEST_COMPILER_CONFIGURED@'
@ -26,8 +27,10 @@ if __name__ == '__main__':
dotest_args = []
# split on an empty string will produce [''] and if you
# add that to the command, it will be treated as a directory...
if len(dotest_args_str) > 0:
dotest_args = dotest_args_str.split(';')
if dotest_common_args_str:
dotest_args.extend(dotest_common_args_str.split(';'))
if dotest_user_args_str:
dotest_args.extend(dotest_user_args_str.split(';'))
# Build dotest.py command.
cmd = [sys.executable, dotest_path]
cmd.extend(['--arch', arch])