-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[pr2-interface.l] check :check-continuous-joint-move-over-180 when simulator mode #452
base: master
Are you sure you want to change the base?
[pr2-interface.l] check :check-continuous-joint-move-over-180 when simulator mode #452
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please add test cdoe
3aaa008
to
2489966
Compare
(unless (or (send self :simulation-modep) (cadr (memq :end-coords-interpolation args))) | ||
(let* ((prev-av (send robot :angle-vector (send self :state :reference-vector))) | ||
(unless (cadr (memq :end-coords-interpolation args)) | ||
(let* ((prev-av (send robot :angle-vector (if (send self :simulation-modep) (send self :state :potentio-vector) (send self :state :reference-vector)))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This did not existing tests
may be
(unless (or (send self :simulation-modep) (cadr (memq :end-coords-interpolation args)))
(let* ((prev-av (send robot :angle-vector (if (send self :simulation-modep) (send self :state :potentio-vector) (send self :state :reference-vector))))
??? please pass tests @Naoki-Hiraoka
https://github.com/jsk-ros-pkg/jsk_pr2eus/actions/runs/3317672989/jobs/5480786114
+ catkin_test_results --verbose --all build
Full test results for 'pr2eus_moveit/test_results/pr2eus_moveit/rosunit-test_pr2eus_moveit_sim.xml'
-------------------------------------------------
<testsuite tests="2" failures="1" disabled="0" errors="0" time="0" name="AllTests">
<testcase name="all-test" status="run" time="0" classname="all-test">
<failure message="number expected" type="AssertionError">
Test:(/ (elt tms l) div)
Trace:32
Message:"number expected"
</failure>
</testcase>
<testcase name="test-angle-vector-motion-plan" status="run" time="0" classname="test-angle-vector-motion-plan">
</testcase>
</testsuite>
See #451