|
3342 | 3342 | "LLVM_INCLUDE_BENCHMARKS" : "OFF",
|
3343 | 3343 | "LLVM_PARALLEL_LINK_JOBS" : 8,
|
3344 | 3344 | "CLANG_DEFAULT_LINKER" : "lld",
|
| 3345 | + "LLVM_LIT_ARGS" : "-v -vv --threads=8", |
3345 | 3346 |
|
3346 | 3347 | "LLDB_TEST_ARCH" : "aarch64",
|
3347 | 3348 | "LLDB_TEST_COMPILER" : util.Interpolate("%(prop:tools_root_path)s/aarch64-clang-18/bin/clang"),
|
|
3420 | 3421 | util.ShellArg(command=[ "scp", "lldb-server", util.Interpolate("%(prop:remote_test_user)s@%(prop:remote_test_host)s:~/lldb-server") ], logname="stdio"),
|
3421 | 3422 | util.ShellArg(command=[ "ssh", util.Interpolate("%(prop:remote_test_user)s@%(prop:remote_test_host)s"), "chmod +x ~/lldb-server" ], logname="stdio"),
|
3422 | 3423 | util.ShellArg(command=[ "ssh", util.Interpolate("%(prop:remote_test_user)s@%(prop:remote_test_host)s"),
|
3423 |
| - "~/lldb-server p --log-channels 'lldb all' --listen '*:1234' " \ |
3424 |
| - "--server --min-gdbserver-port 1236 --max-gdbserver-port 1246 " \ |
3425 |
| - "--log-file ./lldb-server.log > /dev/null 2>&1 &" ], logname="stdio"), |
| 3424 | + "~/lldb-server p --listen '*:1234' --server > /dev/null 2>&1 &" ], logname="stdio"), |
3426 | 3425 | ],
|
3427 | 3426 | workdir = util.Interpolate("%(prop:builddir)s/lldb-server-install/bin"),
|
3428 | 3427 | description = "execute lldb-server on remote target",
|
3429 | 3428 | haltOnFailure = True,
|
3430 | 3429 | ),
|
3431 | 3430 | ],
|
3432 | 3431 | ),
|
3433 |
| - post_finalize_steps = [ |
3434 |
| - #Note: add the following line into the /etc/sudoers file on the remote target |
3435 |
| - # to allow rebooting without entering the sudo's password: |
3436 |
| - # [/etc/sudoers] |
3437 |
| - # ... |
3438 |
| - # ubuntu ALL=NOPASSWD:/sbin/reboot |
3439 |
| - steps.ShellCommand(name = "restart-target-finalize", |
3440 |
| - command = [ "ssh", util.Interpolate("%(prop:remote_test_user)s@%(prop:remote_test_host)s"), |
3441 |
| - "((sleep 5 && sudo reboot) > /dev/null 2>&1 &); exit 0;" |
3442 |
| - ], |
3443 |
| - alwaysRun = True, |
3444 |
| - ), |
3445 |
| - ], |
3446 | 3432 | env = {
|
3447 | 3433 | 'CCACHE_DIR' : util.Interpolate("%(prop:builddir)s/ccache-db"),
|
3448 | 3434 | # TMP/TEMP within the build dir (to utilize a ramdisk).
|
3449 | 3435 | 'TMP' : util.Interpolate("%(prop:builddir)s/build"),
|
3450 | 3436 | 'TEMP' : util.Interpolate("%(prop:builddir)s/build"),
|
3451 |
| - 'LIT_OPTS' : "-a -v --threads=8", |
3452 | 3437 | },
|
3453 | 3438 | )
|
3454 | 3439 | },
|
|
0 commit comments