arpadboda commented on a change in pull request #670: MINIFICPP-1074 - TailFileTests was not working on WIN32 due do CLRF URL: https://github.com/apache/nifi-minifi-cpp/pull/670#discussion_r344179996
########## File path: extensions/standard-processors/tests/unit/TailFileTests.cpp ########## @@ -41,11 +41,44 @@ #include "TailFile.h" #include "LogAttribute.h" -static std::string NEWLINE_FILE = "" // NOLINT - "one,two,three\n" - "four,five,six, seven"; -static const char *TMP_FILE = "minifi-tmpfile.txt"; -static const char *STATE_FILE = "minifi-state-file.txt"; +#ifdef WIN32 +int CR_LEN = 1; +#else +int CR_LEN = 0; +#endif + +static std::string FIRST_LINE = "one,two,three"; // NOLINT Review comment: Can you make these const, too? That would also resolve the linter issues here. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
