From: <ai...@us...> - 2014-03-12 05:25:08
|
Revision: 13049 http://sourceforge.net/p/plplot/code/13049 Author: airwin Date: 2014-03-12 05:25:04 +0000 (Wed, 12 Mar 2014) Log Message: ----------- Until http://sourceforge.net/p/plplot/bugs/144/ is fixed, temporarily remove test_pltcl_standard_examples as a dependency of more general test targets on the affected platforms (only WIN32_AND_NOT_CYGWIN as far as I can tell) so those more general targets do not error out because of this bug. Modified Paths: -------------- trunk/examples/CMakeLists.txt Modified: trunk/examples/CMakeLists.txt =================================================================== --- trunk/examples/CMakeLists.txt 2014-03-09 19:12:43 UTC (rev 13048) +++ trunk/examples/CMakeLists.txt 2014-03-12 05:25:04 UTC (rev 13049) @@ -934,7 +934,14 @@ if(FILE_DEPENDS_${generic_interactive_device}) add_dependencies(test_pltcl_standard_examples test_${generic_interactive_device}_dyndriver) endif(FILE_DEPENDS_${generic_interactive_device}) - list(APPEND interactive_targets_LIST test_pltcl_standard_examples) + if(WIN32_AND_NOT_CYGWIN) + message(STATUS "WARNING: The test_pltcl_standard_examples target can be run independently on + the Windows platform, but it generates an unhandled exception at the end so + it is temporarily excluded from being a dependency of other more general + interactive test targets") + else(WIN32_AND_NOT_CYGWIN) + list(APPEND interactive_targets_LIST test_pltcl_standard_examples) + endif(WIN32_AND_NOT_CYGWIN) if(BUILD_SHARED_LIBS) # tests that use "package require Pltcl" only work if This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |