Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ladisgin committed Apr 1, 2024
1 parent 816e1a7 commit 95d5c9a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion server/test/framework/Server_Tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ namespace {
void generateFiles(const fs::path &sourceFile, const fs::path &testsRelativeDir) {
fs::path testsDirPath = getTestFilePath(testsRelativeDir);

auto projectContext = GrpcUtils::createProjectContext(projectName, suitePath, Paths::UTBOT_TESTS,
auto projectContext = GrpcUtils::createProjectContext(projectName, suitePath, testsDirPath,
Paths::UTBOT_REPORT, buildDirRelPath,
Paths::UTBOT_ITF);

Expand Down
13 changes: 9 additions & 4 deletions vscode-plugin/.vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,15 @@
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"label": "npm: compile",
"detail": "npm run lint && tsc -p ./"
}
// "dependsOn": [
// "proto_gen"
// ]
}
// {
// "label": "proto_gen",
// "command": "./protoc.sh",
// "args": ["${workspaceFolder}/../server/proto", "${workspaceFolder}/src/proto-ts"]
// },
]
}
2 changes: 1 addition & 1 deletion vscode-plugin/src/client/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ export class Client {
const logEntry = response as LogEntry;
started.value = true;
await this.handleResponse(response, progressKey, resolve, responseHandler);
utbotUI.channels().outputServerLogChannel.append(logEntry.getMessage());
utbotUI.channels().outputServerLogChannel.append(logEntry.toString());
})
.on('error', (err) => {
started.value = true;
Expand Down

0 comments on commit 95d5c9a

Please sign in to comment.