Skip to content

Commit

Permalink
Testing fill numeric defaults past min-fields
Browse files Browse the repository at this point in the history
  • Loading branch information
rraustad committed Nov 5, 2023
1 parent b99411d commit a62b606
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/EnergyPlus/InputProcessing/InputProcessor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -868,11 +868,7 @@ void InputProcessor::setObjectItemValue(EnergyPlusData &state,
}
if (is_AlphaBlank) AlphaBlank()(alpha_index) = true;
} else if (field_type == "n") {
if (within_max_fields) {
findDefault(Numbers(numeric_index), schema_field_obj);
} else {
Numbers(numeric_index) = 0;
}
findDefault(Numbers(numeric_index), schema_field_obj);
if (is_NumBlank) NumBlank()(numeric_index) = true;
}
}
Expand Down

5 comments on commit a62b606

@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.

Test-fill-numeric-defaults (rraustad) - x86_64-MacOS-10.17-clang-14.0.0: OK (3531 of 3540 tests passed, 0 test warnings)

Messages:\n

  • 4 tests had: EIO diffs.
  • 4 tests had: Table big diffs.

Failures:\n

InputProcessorFixture Test Summary

  • Passed: 69
  • Failed: 5

regression Test Summary

  • Passed: 782
  • Failed: 4

Build Badge Test Badge

@nrel-bot-2
Copy link

Choose a reason for hiding this comment

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

Test-fill-numeric-defaults (rraustad) - x86_64-Linux-Ubuntu-22.04-gcc-11.4: OK (3572 of 3581 tests passed, 0 test warnings)

Messages:\n

  • 4 tests had: EIO diffs.
  • 4 tests had: Table big diffs.

Failures:\n

InputProcessorFixture Test Summary

  • Passed: 69
  • Failed: 5

regression Test Summary

  • Passed: 802
  • Failed: 4

Build Badge Test 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.

Test-fill-numeric-defaults (rraustad) - Win64-Windows-10-VisualStudio-16: OK (2748 of 2753 tests passed, 0 test warnings)

Failures:\n

InputProcessorFixture Test Summary

  • Passed: 69
  • Failed: 5

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.

Test-fill-numeric-defaults (rraustad) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-UnitTestsCoverage-Debug: OK (1961 of 1966 tests passed, 0 test warnings)

Failures:\n

InputProcessorFixture Test Summary

  • Passed: 69
  • Failed: 5

Build Badge Test Badge Coverage Badge

@nrel-bot-2b
Copy link

Choose a reason for hiding this comment

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

Test-fill-numeric-defaults (rraustad) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-IntegrationCoverage-Debug: OK (790 of 790 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

Please sign in to comment.