turned off unit tests for windows

This commit is contained in:
edwardhartnett 2019-11-16 07:20:45 -07:00
parent f6ace74afb
commit 14f2b50f2f

View File

@ -934,12 +934,16 @@ IF(ENABLE_TESTS)
OPTION(ENABLE_FAILING_TESTS "Run tests which are known to fail, check to see if any have been fixed." OFF)
###
# Option to turn on unit testing. See https://github.com/Unidata/netcdf-c/pull/1472 for more information.
# Currently (August 21, 2019): Will not work with Visual Studio
# Option to turn on unit testing. See
# https://github.com/Unidata/netcdf-c/pull/1472 for more
# information. Currently (August 21, 2019): Will not work with
# Visual Studio. The unit tests are for internal netCDF functions,
# so we don't want to make them external, which would be required to
# run on Windows.
###
# IF(NOT MSVC)
IF(NOT MSVC)
OPTION(ENABLE_UNIT_TESTS "Run Unit Tests." ON)
# ENDIF(NOT MSVC)
ENDIF(NOT MSVC)
###
# End known-failures.
###