Skip to content

Commit

Permalink
cpptool improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
matepek committed Nov 28, 2022
1 parent 5fc03b6 commit b40e55b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [4.3.5]

## [4.3.4] - 2022-10-28

## [4.3.3] - 2022-10-22
Expand Down
1 change: 0 additions & 1 deletion src/Configurations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,6 @@ export class Configurations {
program: '${exec}',
args: '${argsArray}',
cwd: '${cwd}',
env: '${envObj}',
environment: '${envObjArray}',
sourceFileMap: '${sourceFileMapObj}',
});
Expand Down
2 changes: 2 additions & 0 deletions test/cpp/gtest/gtest1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ int main(int argc, char **argv) {

TEST(Std, NoOutput)
{
if(const char* env_p = std::getenv("ENV_TEST"))
std::cout << "ENV_TEST: " << env_p << "\n";
std::cout << "cout\n";
std::cerr << "cerr\n";
}

0 comments on commit b40e55b

Please sign in to comment.