Skip to content
Snippets Groups Projects
Commit 4441fd10 authored by Gitlab Runner's avatar Gitlab Runner
Browse files

Add print in loop.

parent 1920bbbe
No related branches found
No related tags found
1 merge request!75deletet all gpu related files, changed alle .cu files to .cpp files and add...
......@@ -180,9 +180,11 @@ int UbFileInputASCII::readIntegerAfterString(const string &var)
infile.seekg(0L, ios::beg); // Positionszeiger der Datei auf den Anfang setzen
char line[512];
int counter = 0;
do {
infile.getline(line, 512);
printf("%d: %s\n", counter, line);
counter++;
if (infile.eof())
UB_THROW(UbException(UB_EXARGS, "error at reading in file \"" + filename + "\" -> " + var +
" wasn't found in " + this->filename));
......@@ -236,7 +238,6 @@ string UbFileInputASCII::readStringAfterString(const string &var) //,char *value
char line[512];
// string line_copy[512];
do {
infile.getline(line, 512);
if (infile.eof())
......@@ -244,6 +245,17 @@ string UbFileInputASCII::readStringAfterString(const string &var) //,char *value
" wasn't found in " + this->filename));
} while (strstr(line, var.c_str()) != line); // Ende Schleife, wenn varname ganz in zeile vorkommt
// std::string lineRead;
// while(getline(infile, lineRead))
// {
// if(lineRead.find(toSearch, 0) < lineRead.length())
// {
// occurenceNumber++;
// cout << counter << ":" << lineRead << endl;
// }
// }
std::string temp{ line };
temp = temp.substr(var.size()); // zeile um "varname" kuerzen
......
......@@ -12,7 +12,7 @@ TEST(UbFileInputASCIITest, readIntegerAfterString)
UbFileInputASCII sut {filePath.string()};
// const int actual = sut.readIntegerAfterString("test =");
const int actual = sut.readIntegerAfterString("test =");
// EXPECT_THAT(actual, testing::Eq(1));
EXPECT_THAT(actual, testing::Eq(1));
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment