Removed debug output from test cases

This commit is contained in:
Sebastian Messmer 2015-10-30 17:24:44 +01:00
parent a37c1af761
commit e46fb04c58
1 changed files with 0 additions and 3 deletions

View File

@ -85,21 +85,18 @@ bf::path make_relative(const bf::path &path) {
TEST_P(CliTest_WrongEnvironment, MountDirIsBaseDir_MountDirRelative) {
mountdir = make_relative(basedir);
std::cout << basedir.c_str() << " --- " << mountdir.c_str();
Test_Run_Error("Error: Base directory can't be inside the mount directory");
}
TEST_P(CliTest_WrongEnvironment, MountDirIsBaseDir_BaseDirRelative) {
mountdir = basedir;
basedir = make_relative(basedir);
std::cout << basedir.c_str() << " --- " << mountdir.c_str();
Test_Run_Error("Error: Base directory can't be inside the mount directory");
}
TEST_P(CliTest_WrongEnvironment, MountDirIsBaseDir_BothRelative) {
basedir = make_relative(basedir);
mountdir = basedir;
std::cout << basedir.c_str() << " --- " << mountdir.c_str();
Test_Run_Error("Error: Base directory can't be inside the mount directory");
}