Skip to content

Commit

Permalink
Create directories and more output on fail
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Carroll <[email protected]>
  • Loading branch information
mjcarroll committed Nov 21, 2023
1 parent 32d8329 commit 36c1936
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/gz_src_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ class CmdLine : public ::testing::Test
// instead of on teardown leaves the folder intact for debugging if needed
common::removeAll(testCachePath);
ASSERT_TRUE(common::createDirectories(testCachePath));
ASSERT_TRUE(common::createDirectories(
common::joinPaths(testCachePath, "fuel.gazebosim.org")));
ASSERT_TRUE(common::createDirectories(
common::joinPaths(testCachePath, "fuel.ignitionrobotics.org")));

setenv("IGN_FUEL_CACHE_PATH", this->testCachePath.c_str(), true);
}

Expand Down Expand Up @@ -85,7 +90,7 @@ TEST_F(CmdLine, ModelListFail)

EXPECT_NE(this->stdOutBuffer.str().find("Invalid URL"),
std::string::npos) << this->stdOutBuffer.str();
EXPECT_TRUE(this->stdErrBuffer.str().empty());
EXPECT_TRUE(this->stdErrBuffer.str().empty()) << this->stdErrBuffer.str();
}

/////////////////////////////////////////////////
Expand Down

0 comments on commit 36c1936

Please sign in to comment.