disabled apt-based tests on OSX

This commit is contained in:
Brian Gerkey 2011-08-17 15:23:37 +00:00
parent 349033d423
commit afbd3142f8
1 changed files with 7 additions and 2 deletions

View File

@ -35,7 +35,12 @@ set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib)
#target_link_libraries(example ${PROJECT_NAME})
rosbuild_add_pyunit(test/test_rosdep_core.py)
rosbuild_add_pyunit(test/test_rosdep_source.py)
rosbuild_add_pyunit(test/test_rosdep_commandline.py)
rosbuild_add_pyunit(test/test_rosdep_yaml_cache.py)
rosbuild_add_pyunit(test/test_rosdep_script.py)
# These tests assume the presence of `apt`, which makes them fail on OSX.
# They'll presumably also fail on other non-apt systems, but we'll start by
# protecting against failures on OSX.
if(NOT APPLE)
rosbuild_add_pyunit(test/test_rosdep_source.py)
rosbuild_add_pyunit(test/test_rosdep_commandline.py)
endif()