Allow specifying make arguments for testing#109
Allow specifying make arguments for testing#109henningkayser wants to merge 1 commit intomoveit:masterfrom
Conversation
866c154 to
86534fd
Compare
|
Would it be possible to achieve the same thing by setting the environment variable |
Probably, but then you would apply it for all build steps |
v4hn
left a comment
There was a problem hiding this comment.
No harm in having the option to do that.
Still, parallel testing should be possible!
The issue you reference was about some state machine code, so I guess you experience different errors?
Could you at least show an error message?
If you run multiple gazebo tests in parallel you probably have to ensure individual server URIs for the tests to keep nodes from talking to the wrong server?
|
To stay with the existing variable naming for tests, I suggest renaming the new parameter to |
Wasn't showing any errors, neither when running on Travis nor locally.
Thanks, I didn't think about this.
Will do, fixed the tests also |
I ran into an issue where several integration tests using Gazebo caused a memory conflict resulting in the test runs being blocked and to fail. By limiting the number of make jobs to 1 (using -j1 inspired by ros-industrial/industrial_ci#446) all tests succeeded. I kept the new variable name generic, since I'm sure there are many more use cases for custom test options.