From: Kevin Wasserman Date: Fri, 7 Nov 2014 02:45:36 +0000 (-0500) Subject: disable unit tests on windows X-Git-Url: http://www.project-moonshot.org/gitweb/?p=gssweb.git;a=commitdiff_plain;h=98e0034780dea2de5b2b59c316a47474ef6055b3 disable unit tests on windows --- diff --git a/json_gssapi/test/CMakeLists.txt b/json_gssapi/test/CMakeLists.txt index f4c2ff0..ab09be3 100644 --- a/json_gssapi/test/CMakeLists.txt +++ b/json_gssapi/test/CMakeLists.txt @@ -7,7 +7,8 @@ if (GLIB2_FOUND) include_directories(${GLIB2_INCLUDE_DIRS}) endif(GLIB2_FOUND) - +if (WIN32) +else (WIN32) add_executable(test GSSExceptionTest.cpp GSSAcquireCredTest.cpp GSSGetMicTest.cpp @@ -50,8 +51,8 @@ add_executable(test GSSExceptionTest.cpp ) target_link_libraries(test cppunit gssapi_krb5 jansson crypto ${GLIB2_LIBRARIES}) - # install(TARGETS test RUNTIME DESTINATION bin) +endif(WIN32) add_subdirectory(datamodel) add_subdirectory(command_mocks)