Skip to content

Commit 8de1e58

Browse files
committed
inc
1 parent d83a339 commit 8de1e58

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

test/helpers.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
#include <unistd.h>
2929
#endif
3030

31+
#include <iostream>
32+
3133
ScopedFile::ScopedFile(std::string name, const std::string &content, std::string path)
3234
: mName(std::move(name))
3335
, mPath(Path::toNativeSeparators(std::move(path)))
@@ -42,6 +44,7 @@ ScopedFile::ScopedFile(std::string name, const std::string &content, std::string
4244
throw std::runtime_error("ScopedFile(" + mFullPath + ") - could not create directory");
4345
#endif
4446
}
47+
std::cout << mName << " " << mPath << " " << mFullPath << " " << Path::getAbsoluteFilePath(mFullPath) << std::endl;
4548

4649
std::ofstream of(Path::getAbsoluteFilePath(mFullPath));
4750
if (!of.is_open())

0 commit comments

Comments
 (0)