Skip to content

Commit

Permalink
fix(adiru): add new tests and fix old tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tracernz committed Dec 21, 2022
1 parent e5a3565 commit ab90e3c
Show file tree
Hide file tree
Showing 7 changed files with 304 additions and 56 deletions.
12 changes: 12 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,18 @@
"y:/external/src/": "${workspaceFolder}/src/",
"z:/external/src/": "${workspaceFolder}/src/",
}
},
{
"name": "Rust Test Debugger",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/target/debug/",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"preLaunchTask": "cargo test build",
}
]
}
13 changes: 13 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,19 @@
"kind": "build",
"isDefault": true
}
},
{
"label": "Build Rust Tests",
"type": "shell",
"command": "cargo test build",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": false
}
}
]
}
Loading

0 comments on commit ab90e3c

Please sign in to comment.