Skip to content

Commit

Permalink
Merge pull request #8054 from bigladder/fix-windows-ci-warnings
Browse files Browse the repository at this point in the history
Fix Windows CI Warnings/Messages
  • Loading branch information
Myoldmopar authored Jun 15, 2020
2 parents b2090e7 + 535f8c5 commit 6205345
Show file tree
Hide file tree
Showing 83 changed files with 1,346 additions and 1,287 deletions.
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ if(${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} VERSION_GREATER "3.0")
CMAKE_POLICY(SET CMP0054 NEW) # CMake 3.1 added this policy
endif()

cmake_policy(SET CMP0012 NEW) # if() recognizes boolean constants

set( CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH} )

set( CMAKE_POSITION_INDEPENDENT_CODE ON )
Expand Down
1 change: 1 addition & 0 deletions cmake/CMakeAddFortranSubdirectory/config_mingw.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ execute_process(
-DCMAKE_VERSION_MINOR:STRING=@CMAKE_VERSION_MINOR@
-DCMAKE_VERSION_PATCH:STRING=@CMAKE_VERSION_PATCH@
-DCMAKE_VERSION_BUILD:STRING=@CMAKE_VERSION_BUILD@
--no-warn-unused-cli
${CMAKE_COMMAND_LINE}
"@source_dir@")
18 changes: 9 additions & 9 deletions cmake/CompilerFlags.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ ADD_DEFINITIONS("-DXML_STATIC")

IF ( MSVC AND NOT ( "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel" ) ) # Visual C++ (VS 2013)

# COMPILER FLAGS
ADD_COMPILE_OPTIONS("/nologo")
ADD_COMPILE_OPTIONS("/EHsc")
ADD_COMPILE_OPTIONS("/MP") # Enables multi-processor compilation of source within a single project
STRING (REGEX REPLACE "/W3" "/W1" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") # Increase to /W2 then /W3 as more serious warnings are addressed (using regex to avoid VC override warnings)

# Disabled Warnings: Enable some of these as more serious warnings are addressed
# 4068 Unknown pragma
# 4101 Unreferenced local variable
Expand All @@ -21,16 +27,10 @@ IF ( MSVC AND NOT ( "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel" ) ) # Visual C++
# 4355 Passing this pointer in class initializer (object is incomplete so bases/members can only use this in limited ways)
# 4996 Deprecated functions (/D_SCL_SECURE_NO_WARNINGS /D_CRT_SECURE_NO_WARNINGS /D_CRT_NONSTDC_NO_WARNINGS)
# 4503 The decorated name was longer than the compiler limit (4096), and was truncated.
ADD_COMPILE_OPTIONS(/wd4068 /wd4101 /wd4102 /wd4244 /wd4258 /wd4355 /wd4996 /wd4503) # Disables warning messages listed above

# COMPILER FLAGS
ADD_CXX_DEFINITIONS("/nologo")
ADD_CXX_DEFINITIONS("/EHsc")
ADD_CXX_DEFINITIONS("/MP") # Enables multi-processor compilation of source within a single project
STRING (REGEX REPLACE "/W3" "/W1" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") # Increase to /W2 then /W3 as more serious warnings are addressed (using regex to avoid VC override warnings)

ADD_CXX_DEFINITIONS("/wd4068 /wd4101 /wd4102 /wd4244 /wd4258 /wd4355 /wd4996 /wd4503") # Disables warning messages listed above
ADD_CXX_DEFINITIONS("/DNOMINMAX") # Avoid build errors due to STL/Windows min-max conflicts
ADD_CXX_DEFINITIONS("/DWIN32_LEAN_AND_MEAN") # Excludes rarely used services and headers from compilation
ADD_DEFINITIONS(/DNOMINMAX) # Avoid build errors due to STL/Windows min-max conflicts
ADD_DEFINITIONS(/DWIN32_LEAN_AND_MEAN) # Excludes rarely used services and headers from compilation
# ADD_CXX_DEFINITIONS("-d2SSAOptimizer-") # this disables this optimizer which has known major issues

# ADDITIONAL RELEASE-MODE-SPECIFIC FLAGS
Expand Down
4 changes: 4 additions & 0 deletions src/AppGPostProcess/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
project(AppGPostProcess Fortran)

cmake_minimum_required(VERSION 3.5.1)

cmake_policy(SET CMP0012 NEW) # if() recognizes boolean constants

set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
Expand Down
4 changes: 4 additions & 0 deletions src/Basement/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
project(Basement Fortran)

cmake_minimum_required(VERSION 3.5.1)

cmake_policy(SET CMP0012 NEW) # if() recognizes boolean constants

set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
Expand Down
4 changes: 4 additions & 0 deletions src/CalcSoilSurfTemp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
project(CalcSoilSurfTemp Fortran)

cmake_minimum_required(VERSION 3.5.1)

cmake_policy(SET CMP0012 NEW) # if() recognizes boolean constants

set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
Expand Down
4 changes: 4 additions & 0 deletions src/ConvertESOMTR/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
project(ConvertESOMTR Fortran)

cmake_minimum_required(VERSION 3.5.1)

cmake_policy(SET CMP0012 NEW) # if() recognizes boolean constants

set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
Expand Down
2 changes: 1 addition & 1 deletion src/EnergyPlus/ExternalInterface.cc
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ namespace ExternalInterface {
StopExternalInterfaceIfError();

// make a single length here for all strings to be passed to getepvariables
int lenXmlStr(maxVar * DataGlobals::MaxNameLength); // Length of strings being passed to getepvariables
size_t lenXmlStr(maxVar * DataGlobals::MaxNameLength); // Length of strings being passed to getepvariables

// initialize all the strings to this length with blanks
xmlStrOut = std::string(lenXmlStr, ' ');
Expand Down
4 changes: 4 additions & 0 deletions src/ExpandObjects/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
project(ExpandObjects Fortran)

cmake_minimum_required(VERSION 3.5.1)

cmake_policy(SET CMP0012 NEW) # if() recognizes boolean constants

set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
Expand Down
4 changes: 4 additions & 0 deletions src/HVAC-Diagram/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
project(HVAC-Diagram Fortran)

cmake_minimum_required(VERSION 3.5.1)

cmake_policy(SET CMP0012 NEW) # if() recognizes boolean constants

set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
Expand Down
4 changes: 4 additions & 0 deletions src/ParametricPreprocessor/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
project(ParametricPreprocessor Fortran)

cmake_minimum_required(VERSION 3.5.1)

cmake_policy(SET CMP0012 NEW) # if() recognizes boolean constants

set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
Expand Down
4 changes: 4 additions & 0 deletions src/ReadVars/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
project(ReadVars Fortran)

cmake_minimum_required(VERSION 3.5.1)

cmake_policy(SET CMP0012 NEW) # if() recognizes boolean constants

set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
Expand Down
4 changes: 4 additions & 0 deletions src/Slab/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
project(Slab Fortran)

cmake_minimum_required(VERSION 3.5.1)

cmake_policy(SET CMP0012 NEW) # if() recognizes boolean constants

set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
Expand Down
4 changes: 4 additions & 0 deletions src/Transition/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
project(Transition Fortran)

cmake_minimum_required(VERSION 3.5.1)

cmake_policy(SET CMP0012 NEW) # if() recognizes boolean constants

set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
Expand Down
10 changes: 4 additions & 6 deletions third_party/BCVTB/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,16 @@ ENDIF()

INCLUDE_DIRECTORIES( "${PROJECT_SOURCE_DIR}/third_party/Expat/lib")

IF (UNIX)
ADD_DEFINITIONS("-fPIC")
ENDIF()

ADD_LIBRARY( bcvtb STATIC ${SRC} )

IF( WIN32 )
TARGET_LINK_LIBRARIES( bcvtb wsock32 )
ENDIF()

IF( MSVC )
ADD_DEFINITIONS( "/w" )
ELSE()
ADD_DEFINITIONS( "-w -fPIC" )
ENDIF()

set_target_properties(
bcvtb
PROPERTIES
Expand Down
26 changes: 13 additions & 13 deletions third_party/BCVTB/utilSocket.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ derivative works thereof, in binary and source code form.
#include "utilXml.h"


FILE *f1 = NULL;
FILE *f1 = NULL;
int REQUIRED_READ_LENGTH = 0;
int REQUIRED_WRITE_LENGTH = 0;
int SERVER_VERSION = 0;
int SERVER_VERSION = 0;

// Global variable to check for FMUExport case
int FMUEXPORT = 0;
Expand All @@ -137,10 +137,10 @@ int FMUEXPORT = 0;
///\param bufLen The length of the character array \c buffer. This parameter will
/// be set to the new size of \c buffer if memory was reallocated.
///\return 0 if no error occurred.
int save_append(char* *buffer, const char *toAdd, int *bufLen){
const int size = 1024;
const int nNewCha = strlen(toAdd);
const int nBufCha = strlen(*buffer);
int save_append(char* *buffer, const char *toAdd, size_t *bufLen){
const size_t size = 1024;
const size_t nNewCha = strlen(toAdd);
const size_t nBufCha = strlen(*buffer);
// reallocate memory if needed
if ( *bufLen < nNewCha + nBufCha + 1){
*bufLen = *bufLen + size * (((nNewCha + nBufCha) / size)+1);
Expand Down Expand Up @@ -175,7 +175,7 @@ int assembleBuffer(int flag,
int nDbl, int nInt, int nBoo,
double curSimTim,
double dblVal[], int intVal[], int booVal[],
char* *buffer, int *bufLen)
char* *buffer, size_t *bufLen)
{
int i;
int retVal;
Expand Down Expand Up @@ -317,7 +317,6 @@ int disassembleHeaderBuffer(const char* buffer,
int retVal; // return value
//////////////////////////////////////////////////////
// Get first few integers to set up dictionaray
int i;
// set number of received values to zero to ensure that
// if retVal != 0, we have the values initialized
*nDbl = 0;
Expand Down Expand Up @@ -429,7 +428,7 @@ int getsocketportnumber(const char *const docname) {
int retVal;
char *xPat = "//ipc/socket[@port]";
char *res;
int i;
size_t i;
res = malloc(BUFFER_LENGTH);
if (res == NULL) {
perror("malloc failed in getsocketportnumber.");
Expand Down Expand Up @@ -468,7 +467,7 @@ int getmainversionnumber(){
/// \return 0 if successful, or -1 if an error occured.
int getsockethost(const char *const docname, char *const hostname) {
char *xPat = "//ipc/socket[@hostname]";
int i;
size_t i;
int r = getxmlvalue(docname, xPat, hostname, &i, BUFFER_LENGTH);
return r;
}
Expand Down Expand Up @@ -669,7 +668,7 @@ int writetosocket(const int *sockfd,
int retVal;
// buffer used to exchange data
char *buffer;
int bufLen = REQUIRED_WRITE_LENGTH;
size_t bufLen = REQUIRED_WRITE_LENGTH;

#ifdef NDEBUG
if (f1 == NULL) // open file
Expand Down Expand Up @@ -734,7 +733,7 @@ if (*sockfd < 0 ){
#endif

#ifdef _MSC_VER
retVal = send(*sockfd,buffer,strlen(buffer), 0);
retVal = send(*sockfd,buffer,(int)strlen(buffer), 0);
#else
retVal = write(*sockfd,buffer,strlen(buffer));
#endif
Expand Down Expand Up @@ -897,7 +896,7 @@ int readfromsocket(const int *sockfd, int *flaRea,
double *curSimTim,
double dblValRea[], int intValRea[], int booValRea[])
{
int retVal, i;
int retVal;
char *inpBuf;
/////////////////////////////////////////////////////
// make sure that the socketFD is valid
Expand Down Expand Up @@ -976,6 +975,7 @@ int readfromsocket(const int *sockfd, int *flaRea,
///\return The exit value of the \c read command.
int readbufferfromsocket(const int *sockfd,
char *buffer, int *bufLen){
(void)bufLen;
int retVal;
int reachedEnd = 0;
// The number 8192 needs to be the same as in Server.java
Expand Down
4 changes: 2 additions & 2 deletions third_party/BCVTB/utilSocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ extern int SERVER_VERSION;
///\param bufLen The length of the character array \c buffer. This parameter will
/// be set to the new size of \c buffer if memory was reallocated.
///\return 0 if no error occurred.
int save_append(char* *buffer, const char *toAdd, int *bufLen);
int save_append(char* *buffer, const char *toAdd, size_t *bufLen);

////////////////////////////////////////////////////////////////
/// Assembles the buffer that will be exchanged through the IPC.
Expand All @@ -174,7 +174,7 @@ int assembleBuffer(int flag,
int nDbl, int nInt, int nBoo,
double curSimTim,
double dblVal[], int intVal[], int booVal[],
char* *buffer, int *bufLen);
char* *buffer, size_t *bufLen);

/////////////////////////////////////////////////////////////////
/// Gets an integer and does the required error checking.
Expand Down
Loading

19 comments on commit 6205345

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

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

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

develop (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-custom_check: OK (13 of 13 tests passed, 0 test warnings)

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

develop (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-cppcheck: OK (0 of 0 tests passed, 0 test warnings)

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

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

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

global_zone_plenum (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-cppcheck: OK (0 of 0 tests passed, 0 test warnings)

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

global_zone_plenum (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-custom_check: OK (13 of 13 tests passed, 0 test warnings)

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

global_zone_plenum (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-gcc-7.5: OK (2885 of 2885 tests passed, 0 test warnings)

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.

develop (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-IntegrationCoverage-Debug: OK (710 of 710 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 (Myoldmopar) - Win64-Windows-10-VisualStudio-16: OK (2116 of 2116 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.

global_zone_plenum (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-UnitTestsCoverage-Debug: OK (1433 of 1433 tests passed, 0 test warnings)

Build Badge Test Badge Coverage 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 (Myoldmopar) - x86_64-MacOS-10.13-clang: OK (2140 of 2140 tests passed, 0 test warnings)

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

global_zone_plenum (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-IntegrationCoverage-Debug: OK (710 of 710 tests passed, 0 test warnings)

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.

global_zone_temp_predictor_corrector (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-gcc-7.5: OK (2885 of 2885 tests passed, 0 test warnings)

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

global_zone_temp_predictor_corrector (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-custom_check: OK (13 of 13 tests passed, 0 test warnings)

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

global_zone_temp_predictor_corrector (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-cppcheck: OK (0 of 0 tests passed, 0 test warnings)

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

global_zone_temp_predictor_corrector (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-UnitTestsCoverage-Debug: OK (1433 of 1433 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.

global_zone_temp_predictor_corrector (Myoldmopar) - Win64-Windows-10-VisualStudio-16: OK (2116 of 2116 tests passed, 0 test warnings)

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.

global_zone_temp_predictor_corrector (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-IntegrationCoverage-Debug: OK (710 of 710 tests passed, 0 test warnings)

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

global_zone_temp_predictor_corrector (Myoldmopar) - x86_64-MacOS-10.13-clang: OK (2845 of 2845 tests passed, 0 test warnings)

Build Badge Test Badge

Please sign in to comment.