install rosdep.yaml

This commit is contained in:
Ken Conley 2012-01-17 18:09:48 +00:00
parent 6b5887736b
commit 8d218be412
2 changed files with 1 additions and 8 deletions

View File

@ -26,8 +26,7 @@ add_nosetests(tools/rosclean/test)
add_nosetests(tools/roscreate/test)
# INSTALLATION
message("TODO: consider removing ros/stack.xml, pending a change in rosinstall's behavior")
install(FILES stack.xml
install(FILES stack.xml rosdep.yaml
DESTINATION share/ros)
install(FILES config/rosconsole.config
DESTINATION share/ros/config)

View File

@ -63,12 +63,6 @@ class RoslibStacksTest(unittest.TestCase):
l = list_stacks()
self.assert_('ros' in l)
# make sure it is equivalent to rosstack list
from roslib.rospack import rosstackexec
l2 = [x for x in rosstackexec(['list']).split('\n') if x]
l2 = [x.split()[0] for x in l2]
self.assertEquals(set(l), set(l2), set(l) ^ set(l2))
# test with env
test_dir = os.path.join(roslib.packages.get_pkg_dir('roslib'), 'test', 'stack_tests', 's1')
env = os.environ.copy()