|
From: <ai...@us...> - 2009-09-30 17:12:24
|
Revision: 10496
http://plplot.svn.sourceforge.net/plplot/?rev=10496&view=rev
Author: airwin
Date: 2009-09-30 17:11:53 +0000 (Wed, 30 Sep 2009)
Log Message:
-----------
Remove test_some_diff_psc target which tends to encourage bogus
multiple-target use of parallel builds.
Rename important test_all_diff_psc target as test_diff_psc.
Modified Paths:
--------------
trunk/examples/CMakeLists.txt
Modified: trunk/examples/CMakeLists.txt
===================================================================
--- trunk/examples/CMakeLists.txt 2009-09-30 17:00:35 UTC (rev 10495)
+++ trunk/examples/CMakeLists.txt 2009-09-30 17:11:53 UTC (rev 10496)
@@ -472,18 +472,12 @@
endif(ENABLE_${language})
endforeach(language_info ${language_info_LIST})
- # Note no target or file dependencies for test_some_diff_psc since
- # we want to execute this target like it is done in ctest, i.e.,
- # whenever we like for whatever test_${language}_psc targets we
- # have run first.
- add_custom_target(test_some_diff_psc COMMAND ${compare_command})
-
- # Note this target does have complete file and target dependencies to
- # force a complete comparison of stdout and PostScript results.
- add_custom_target(test_all_diff_psc COMMAND ${compare_command}
+ # Note this target has complete file and target dependencies for
+ # a comparison of stdout and PostScript results.
+ add_custom_target(test_diff_psc COMMAND ${compare_command}
DEPENDS ${diff_files_LIST}
)
- add_dependencies(test_all_diff_psc ${diff_targets_LIST})
+ add_dependencies(test_diff_psc ${diff_targets_LIST})
endif(PLD_psc)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|