Skip to content
This repository has been archived by the owner on Mar 12, 2021. It is now read-only.

Commit

Permalink
Добавил команду тестирования текущего файла #31
Browse files Browse the repository at this point in the history
Все команды тестирования используют 1testrunner
  • Loading branch information
artbear committed Aug 26, 2016
1 parent 70f0be0 commit 07cd9d4
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,33 @@
"taskName": "Testing project",
"args": [
"${workspaceRoot}/tests/finder.os",
"-runall",
"${workspaceRoot}/tests"
// "${workspaceRoot}/../1testrunner/testrunner.os",
// "-runall",
// "${workspaceRoot}"
// "${workspaceRoot}/tests"
],
"echoCommand": true,
"showOutput": "always",
"suppressTaskName": true,
// "isBuildCommand": false,
"isTestCommand": true,
"problemMatcher": {
"fileLocation": "absolute",
"pattern": {
"regexp": "{Модуль\\s+(.+)\\s\\/\\s.*:\\s+(\\d+)\\s+\\/\\s+([^{]*)",
"file": 1,
"location": 2,
"message": 3
}
}
},
{
"taskName": "Testing current test-file",
"args": [
"${workspaceRoot}/src/1testrunner/testrunner.os",
// "${workspaceRoot}/tests/testrunner.os",
"-run",
"${file}",
],
"echoCommand": true,
"showOutput": "always",
Expand Down

0 comments on commit 07cd9d4

Please sign in to comment.