forked from start-jsk/rtmros_common
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
93 additions
and
22 deletions.
There are no files selected for viewing
Submodule .travis
updated
21 files
+13 −9 | .travis.yml | |
+138 −0 | CHANGELOG.rst | |
+19 −6 | README.md | |
+3 −0 | docker.sh | |
+62 −0 | docker/Dockerfile.ros-ubuntu:12.04 | |
+5 −0 | docker/Dockerfile.ros-ubuntu:12.04-base | |
+33 −0 | docker/Dockerfile.ros-ubuntu:14.04 | |
+5 −0 | docker/Dockerfile.ros-ubuntu:14.04-base | |
+15 −0 | docker/Dockerfile.ros-ubuntu:14.04-pcl | |
+37 −0 | docker/Dockerfile.ros-ubuntu:14.04-pcl1.8 | |
+26 −0 | docker/Dockerfile.ros-ubuntu:16.04 | |
+5 −0 | docker/Dockerfile.ros-ubuntu:16.04-base | |
+14 −0 | docker/Dockerfile.ros-ubuntu:16.04-pcl | |
+26 −0 | docker/Dockerfile.ros-ubuntu:18.04 | |
+5 −0 | docker/Dockerfile.ros-ubuntu:18.04-base | |
+14 −0 | docker/Dockerfile.ros-ubuntu:18.04-pcl | |
+54 −0 | docker/Makefile | |
+6 −1 | package.xml | |
+4 −4 | rosdep-install.sh | |
+86 −19 | travis.sh | |
+143 −89 | travis_jenkins.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
- git: | ||
uri: https://github.com/tork-a/openhrp3-release | ||
version: release/kinetic/openhrp3 | ||
local-name: openhrp3 | ||
- git: | ||
uri: https://github.com/tork-a/hrpsys-release | ||
version: release/kinetic/hrpsys | ||
local-name: hrpsys |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
- git: | ||
uri: https://github.com/tork-a/openhrp3-release | ||
version: release/kinetic/openhrp3 | ||
local-name: openhrp3 | ||
- git: | ||
uri: https://github.com/fkanehiro/hrpsys-base | ||
version: master | ||
local-name: hrpsys | ||
- git: | ||
uri: https://github.com/tork-a/rtshell-release | ||
local-name: rtshell | ||
- git: | ||
uri: https://github.com/tork-a/rtsprofile-release | ||
local-name: rtsprofile | ||
- git: | ||
uri: https://github.com/tork-a/rtctree-release | ||
local-name: rtctree |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env python | ||
|
||
import rostest, unittest, sys, os | ||
|
||
import time | ||
#time.sleep(10) # wait for launch | ||
|
||
vars(__builtins__).update({'__IPYTHON__': "fake python as ipython to not to drop in shell"}) | ||
class TestInteractive(unittest.TestCase): | ||
def test(self): | ||
local_dict = locals() # https://stackoverflow.com/questions/34780235/pythons-execfile-variable-scope-issue | ||
execfile(os.path.join(os.path.dirname(os.path.abspath(__file__)), "../scripts", "hrpsys_tools_config.py"), globals(), local_dict) | ||
hcf = local_dict['hcf'] | ||
hcf.setJointAngles([10,10,10,10,10,10,10,10,10], 1) | ||
print hcf.getJointAngles() | ||
self.assertTrue("OK") | ||
|
||
if __name__ == '__main__': | ||
rostest.rosrun("hrpsys_tools", "test_interactive", TestInteractive, sys.argv) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters