{
"version": "0.2.0",
"configurations": [
{
"name": "Debug unit tests in library 'plot3d'",
"type": "lldb",
"request": "launch",
"cargo": {
"args": ["test"]
},
"cwd": "${workspaceFolder}",
"env":{"RUST_BACKTRACE":"1"}
},
{
"name": "Debug read_write_fortran_binary_roundtrip",
"type": "lldb",
"request": "launch",
"cargo": {
"args": ["test", "--no-run", "--lib", "--package", "plot3d"]
},
"program": "${cargo:program}",
"args": [
"read_write_fortran_binary_roundtrip",
"--nocapture",
"--test-threads=1",
"--exact"
],
"cwd": "${workspaceFolder}",
"env": { "RUST_BACKTRACE": "1" }
},
{
"name": "Debug rotational periodicity",
"type": "lldb",
"request": "launch",
"cargo": {
"args": ["test", "--no-run", "--lib", "--package", "plot3d"]
},
"program": "${cargo:program}",
"args": [
"rotational_periodicity_test",
"--nocapture",
"--test-threads=1",
"--exact"
],
"cwd": "${workspaceFolder}",
"env": { "RUST_BACKTRACE": "1" }
}
]
}