From 40bfc63c99f65fb5cc314e453ca5208cc8b27a76 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel <guilhem.saurel@laas.fr> Date: Mon, 13 Aug 2018 14:56:55 +0200 Subject: [PATCH] [CMake][Tests] remove useless unitTesting/two_link.urdf file --- unitTesting/CMakeLists.txt | 3 --- unitTesting/two_link.urdf | 45 -------------------------------------- 2 files changed, 48 deletions(-) delete mode 100644 unitTesting/two_link.urdf diff --git a/unitTesting/CMakeLists.txt b/unitTesting/CMakeLists.txt index 108cd54..3247e7f 100644 --- a/unitTesting/CMakeLists.txt +++ b/unitTesting/CMakeLists.txt @@ -29,9 +29,6 @@ test_constructor # Install procedure for the urdf files #---------------------------------------------------- -FILE(COPY ${CMAKE_CURRENT_SOURCE_DIR}/two_link.urdf - DESTINATION urdf) - SET(test_dyn_plugins_dependencies dynamic) # Make Boost.Test generates the main function in test cases. diff --git a/unitTesting/two_link.urdf b/unitTesting/two_link.urdf deleted file mode 100644 index 570717d..0000000 --- a/unitTesting/two_link.urdf +++ /dev/null @@ -1,45 +0,0 @@ -<?xml version="1.0"?> -<!-- - simple_humanoid URDF model - - FIXME: fill missing data: sole, gripper and sensors - --> -<robot xmlns:xacro="http://ros.org/wiki/xacro" name="test_two_link"> - - <link name="base_link"/> - <joint name="JOINT1" type="revolute"> - <axis xyz="0 0 1"/> - <parent link="base_link"/> - <child link="CHILD1"/> - <origin xyz="1 0 0"/> - <limit effort="12" lower="0" upper="3.14" velocity="10"/> - </joint> - <link name="CHILD1"> - <inertial> - <origin xyz="0.5 0 0" rpy="0 0 0"/> - <mass value="10"/> - <inertia ixx="1" ixy="0" ixz="0" iyy="1" iyz="0" izz="1" /> - </inertial> - </link> - <joint name="JOINT2" type="revolute"> - <axis xyz="0 0 1"/> - <parent link="CHILD1"/> - <child link="CHILD2"/> - <origin xyz="1 0 0"/> - <limit effort="12" lower="0" upper="3.14" velocity="10"/> - </joint> - <link name="CHILD2"> - <inertial> - <origin xyz="0.5 0 0" rpy="0 0 0"/> - <mass value="20"/> - <inertia ixx="1" ixy="0" ixz="0" iyy="1" iyz="0" izz="1" /> - </inertial> - </link> - <joint name="FRAMEJOINT1" type="fixed"> - <parent link="CHILD2"/> - <child link="CHILD3"/> - <origin rpy="0 0 0" xyz="0 0 -0.16"/> - </joint> - <link name="CHILD3"/> - -</robot> -- GitLab