data: updated expected output for cxx indexer tests and source group tests for windows

This commit is contained in:
mlangkabel
2019-05-28 16:42:00 +02:00
parent 5084a11dec
commit b607933e0f
79 changed files with 13378 additions and 2475 deletions
+6 -2
View File
@@ -504,8 +504,12 @@ private:
std::shared_ptr<const SourceGroup> sourceGroup)
{
const std::shared_ptr<const TextAccess> output = generateExpectedOutput(projectName, sourceGroup);
const FilePath expectedOutputFilePath = getOutputDirectoryPath(projectName).concatenate(L"output.txt");
#ifdef WIN32
const std::wstring expectedOutputFileName = L"output_windows.txt";
#else
const std::wstring expectedOutputFileName = L"output_unix.txt";
#endif
const FilePath expectedOutputFilePath = getOutputDirectoryPath(projectName).concatenate(expectedOutputFileName);
if (s_updateExpectedOutput || !expectedOutputFilePath.exists())
{
std::ofstream expectedOutputFile;