Skip to content

Conversation

@da-viper
Copy link
Contributor

workspaceRoot was deprecated in september 2017 release

@llvmbot
Copy link
Member

llvmbot commented Oct 20, 2025

@llvm/pr-subscribers-lldb

Author: Ebuka Ezike (da-viper)

Changes

workspaceRoot was deprecated in september 2017 release


Full diff: https://github.com/llvm/llvm-project/pull/164320.diff

1 Files Affected:

  • (modified) lldb/tools/lldb-dap/package.json (+5-5)
diff --git a/lldb/tools/lldb-dap/package.json b/lldb/tools/lldb-dap/package.json index 3f0f150c0d98e..05dce285dd592 100644 --- a/lldb/tools/lldb-dap/package.json +++ b/lldb/tools/lldb-dap/package.json @@ -453,7 +453,7 @@ "cwd": { "type": "string", "description": "Program working directory.", - "default": "${workspaceRoot}" + "default": "${workspaceFolder}" }, "env": { "anyOf": [ @@ -883,10 +883,10 @@ "type": "lldb-dap", "request": "launch", "name": "Debug", - "program": "${workspaceRoot}/<your program>", + "program": "${workspaceFolder}/<your program>", "args": [], "env": [], - "cwd": "${workspaceRoot}" + "cwd": "${workspaceFolder}" } ], "configurationSnippets": [ @@ -897,10 +897,10 @@ "type": "lldb-dap", "request": "launch", "name": "${2:Launch}", - "program": "^\"\\${workspaceRoot}/${1:<your program>}\"", + "program": "^\"\\${workspaceFolder}/${1:<your program>}\"", "args": [], "env": [], - "cwd": "^\"\\${workspaceRoot}\"" + "cwd": "^\"\\${workspaceFolder}\"" } }, { 
@da-viper da-viper merged commit dc71831 into llvm:main Oct 20, 2025
13 checks passed
@da-viper da-viper deleted the use-workspace-folder branch October 20, 2025 22:02
@llvm-ci
Copy link
Collaborator

llvm-ci commented Oct 20, 2025

LLVM Buildbot has detected a new failure on builder lldb-x86_64-debian running on lldb-x86_64-debian while building lldb at step 6 "test".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/162/builds/33599

Here is the relevant piece of the build log for the reference
Step 6 (test) failure: build (failure) ... PASS: lldb-api :: functionalities/tail_call_frames/disambiguate_tail_call_seq/TestDisambiguateTailCallSeq.py (336 of 3253) PASS: lldb-api :: functionalities/breakpoint/breakpoint_ids/TestBreakpointIDs.py (337 of 3253) PASS: lldb-api :: lang/cpp/incomplete-stl-types/TestStlIncompleteTypes.py (338 of 3253) XFAIL: lldb-api :: functionalities/thread/multi_break/TestMultipleBreakpoints.py (339 of 3253) PASS: lldb-api :: commands/expression/static-initializers/TestStaticInitializers.py (340 of 3253) PASS: lldb-api :: functionalities/data-formatter/data-formatter-advanced/TestDataFormatterAdv.py (341 of 3253) PASS: lldb-api :: lang/cpp/scratch-context-merging/structs/TestCppScratchContextMergingStructs.py (342 of 3253) PASS: lldb-api :: functionalities/data-formatter/custom-printf-summary/TestCustomSummaryLLVMFormat.py (343 of 3253) PASS: lldb-api :: commands/expression/options/TestExprOptions.py (344 of 3253) PASS: lldb-shell :: Driver/TestPositionalArgs.test (345 of 3253) FAIL: lldb-api :: tools/lldb-dap/output/TestDAP_output.py (346 of 3253) ******************** TEST 'lldb-api :: tools/lldb-dap/output/TestDAP_output.py' FAILED ******************** Script: -- /usr/bin/python3 /home/worker/2.0.1/lldb-x86_64-debian/llvm-project/lldb/test/API/dotest.py -u CXXFLAGS -u CFLAGS --env LLVM_LIBS_DIR=/home/worker/2.0.1/lldb-x86_64-debian/build/./lib --env LLVM_INCLUDE_DIR=/home/worker/2.0.1/lldb-x86_64-debian/build/include --env LLVM_TOOLS_DIR=/home/worker/2.0.1/lldb-x86_64-debian/build/./bin --arch x86_64 --build-dir /home/worker/2.0.1/lldb-x86_64-debian/build/lldb-test-build.noindex --lldb-module-cache-dir /home/worker/2.0.1/lldb-x86_64-debian/build/lldb-test-build.noindex/module-cache-lldb/lldb-api --clang-module-cache-dir /home/worker/2.0.1/lldb-x86_64-debian/build/lldb-test-build.noindex/module-cache-clang/lldb-api --executable /home/worker/2.0.1/lldb-x86_64-debian/build/./bin/lldb --compiler /home/worker/2.0.1/lldb-x86_64-debian/build/./bin/clang --dsymutil /home/worker/2.0.1/lldb-x86_64-debian/build/./bin/dsymutil --make /usr/bin/gmake --llvm-tools-dir /home/worker/2.0.1/lldb-x86_64-debian/build/./bin --lldb-obj-root /home/worker/2.0.1/lldb-x86_64-debian/build/tools/lldb --lldb-libs-dir /home/worker/2.0.1/lldb-x86_64-debian/build/./lib --cmake-build-type Release -t /home/worker/2.0.1/lldb-x86_64-debian/llvm-project/lldb/test/API/tools/lldb-dap/output -p TestDAP_output.py -- Exit Code: 1 Command Output (stdout): -- lldb version 22.0.0git (https://github.com/llvm/llvm-project.git revision dc718313ecb7cb382cb3c788380e388f7ce4551c) clang revision dc718313ecb7cb382cb3c788380e388f7ce4551c llvm revision dc718313ecb7cb382cb3c788380e388f7ce4551c Skipping the following test categories: ['libc++', 'msvcstl', 'dsym', 'gmodules', 'debugserver', 'objc'] -- Command Output (stderr): -- Change dir to: /home/worker/2.0.1/lldb-x86_64-debian/llvm-project/lldb/test/API/tools/lldb-dap/output runCmd: settings clear --all output: runCmd: settings set symbols.enable-external-lookup false output: runCmd: settings set target.inherit-tcc true output: runCmd: settings set target.disable-aslr false output: runCmd: settings set target.detach-on-error false output: 
Lukacma pushed a commit to Lukacma/llvm-project that referenced this pull request Oct 29, 2025
aokblast pushed a commit to aokblast/llvm-project that referenced this pull request Oct 30, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

4 participants