Skip to content

Commit

Permalink
Test Launch json Fix (#1085)
Browse files Browse the repository at this point in the history
### Summary
<!-- Quick summary of changes, optional -->

### Changelist 
<!-- Give a list of the changes covered in this PR. This will help both
you and the reviewer keep this PR within scope. -->

### Testing Done
<!-- Outline the testing that was done to demonstrate the changes are
solid. This could be unit tests, integration tests, testing on the car,
etc. Include relevant code snippets, screenshots, etc as needed. -->

- [x] tested with regen in PR#1011

### Resolved Issues
<!-- Link any issues that this PR resolved like so: `Resolves #1, #2,
and #5` (Note: Using this format, Github will automatically close the
issue(s) when this PR is merged in). -->

### Checklist
*Please change `[ ]` to `[x]` when you are ready.*
- [ ] I have read and followed the code conventions detailed in
[README.md](../README.md) (*This will save time for both you and the
reviewer!*).
- [ ] If this pull request is longer then **500** lines, I have provided
*explicit* justification in the summary above explaining why I *cannot*
break this up into multiple pull requests (*Small PR's are faster and
less painful for everyone involved!*).
  • Loading branch information
philam2001 authored Nov 15, 2023
1 parent 30fbfc1 commit eac0a83
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"name": "Debug Tests: BMS",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/build_x86/firmware/thruna/BMS/BMS_test",
"program": "${workspaceRoot}/build_fw_test/firmware/thruna/BMS/BMS_test",
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build: BMS_test",
"linux": {
Expand All @@ -89,7 +89,7 @@
"name": "Debug Tests: DCM",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/build_x86/firmware/thruna/DCM/DCM_test",
"program": "${workspaceRoot}/build_fw_test/firmware/thruna/DCM/DCM_test",
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build: DCM_test",
"linux": {
Expand All @@ -103,7 +103,7 @@
"name": "Debug Tests: FSM",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/build_x86/firmware/thruna/FSM/FSM_test",
"program": "${workspaceRoot}/build_fw_test/firmware/thruna/FSM/FSM_test",
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build: FSM_test",
"linux": {
Expand All @@ -117,7 +117,7 @@
"name": "Debug Tests: PDM",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/build_x86/firmware/thruna/PDM/PDM_test",
"program": "${workspaceRoot}/build_fw_test/firmware/thruna/PDM/PDM_test",
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build: PDM_test",
"linux": {
Expand All @@ -131,7 +131,7 @@
"name": "Debug Tests: DIM",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/build_x86/firmware/thruna/DIM/DIM_test",
"program": "${workspaceRoot}/build_fw_test/firmware/thruna/DIM/DIM_test",
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build: DIM_test",
"linux": {
Expand All @@ -145,7 +145,7 @@
"name": "Debug Tests: Shared",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/build_x86/firmware/shared/shared_test",
"program": "${workspaceRoot}/build_fw_test/firmware/shared/shared_test",
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build: shared_test",
"linux": {
Expand Down

0 comments on commit eac0a83

Please sign in to comment.