Skip to content

Commit

Permalink
Added: 32-bit launch setting for branch_hook_32
Browse files Browse the repository at this point in the history
  • Loading branch information
Sewer56 committed Dec 29, 2023
1 parent 1f729cf commit ab920d7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,28 @@
"problemMatcher": "$rustc",
}
},
{
"name": "[branch_hook_32] i686-unknown-linux-gnu",
"type": "lldb",
"cwd": "${workspaceFolder}/projects/reloaded-hooks-x86-sys",
"request": "launch",
"sourceLanguages": ["rust"],
"env": {
"RUST_TEST_THREADS": "1",
},
"cargo": {
// No idea how to limit to 1 test, but at least we can limit to 1 compilation artifact.
"args": [
"test",
"--no-run",
"--test=branch_hook_32",
"--target=i686-unknown-linux-gnu",
"--manifest-path=${workspaceFolder}/projects/reloaded-hooks-x86-sys/Cargo.toml"
// "--profile=profile"
],
"problemMatcher": "$rustc",
}
},
{
"type": "lldb",
"request": "launch",
Expand Down

0 comments on commit ab920d7

Please sign in to comment.