Skip to content

Commit

Permalink
Merge pull request #8841 from NREL/fix-readvars-errors
Browse files Browse the repository at this point in the history
Make EnergyPlus-generated RVI and MVI use non-quoted paths
  • Loading branch information
mitchute authored Jun 29, 2021
2 parents 1a13147 + 0a295ba commit ccad7dd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/EnergyPlus/CommandLineInterface.cc
Original file line number Diff line number Diff line change
Expand Up @@ -883,8 +883,8 @@ namespace CommandLineInterface {
if (!ofs.good()) {
ShowFatalError(state, "EnergyPlus: Could not open file \"" + RVIfile.string() + "\" for output (write).");
} else {
ofs << state.files.eso.filePath << '\n';
ofs << state.files.csv.filePath << '\n';
ofs << state.files.eso.filePath.string() << '\n';
ofs << state.files.csv.filePath.string() << '\n';
}
}

Expand All @@ -894,8 +894,8 @@ namespace CommandLineInterface {
if (!ofs.good()) {
ShowFatalError(state, "EnergyPlus: Could not open file \"" + RVIfile.string() + "\" for output (write).");
} else {
ofs << state.files.mtr.filePath << '\n';
ofs << state.files.mtr_csv.filePath << '\n';
ofs << state.files.mtr.filePath.string() << '\n';
ofs << state.files.mtr_csv.filePath.string() << '\n';
}
}

Expand Down

5 comments on commit ccad7dd

@nrel-bot-2c
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

develop (mitchute) - x86_64-Linux-Ubuntu-18.04-gcc-7.5: OK (2398 of 2398 tests passed, 0 test warnings)

Build Badge Test Badge

@nrel-bot-3
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

develop (mitchute) - x86_64-MacOS-10.15-clang-11.0.0: OK (2376 of 2377 tests passed, 0 test warnings)

Failures:\n

EnergyPlusFixture Test Summary

  • Passed: 1152
  • Failed: 1

Build Badge Test Badge

@nrel-bot-2c
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

develop (mitchute) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-UnitTestsCoverage-Debug: OK (1654 of 1654 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

@nrel-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

develop (mitchute) - Win64-Windows-10-VisualStudio-16: OK (2349 of 2349 tests passed, 0 test warnings)

Build Badge Test Badge

@nrel-bot-2c
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

develop (mitchute) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-IntegrationCoverage-Debug: OK (726 of 726 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

Please sign in to comment.