-
-
Notifications
You must be signed in to change notification settings - Fork 52
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
GTest test listing incorrectly passes --help #236
Comments
This does not add up. Did you delete lines at |
Yeah I highlighted the important parts. spawner: s {
_executor: '/bin/bash',
_args: [
'/build/runtest.sh',
'${cmd}',
'${argsFlat}',
'--help',
'--gtest_list_tests',
'--gtest_output=xml:/build/Test.TestMate.testListCache.xml',
'--gtest_color=no',
'--gtest_filter=TestName',
'--gtest_also_run_disabled_tests'
], So --help is from the test framework check, next 2 are from test discovery and then it appends the runner args. |
I can see the problem but I'm missing the rest of the log. Would you attach the full log? |
Never mind, I think I found it. |
Btw what does your |
Fixed on next release. Still interested about |
Thanks! |
Does debug test work for you? |
For env scripts yes with gdb's |
Checklist
Describe the bug
For whatever reason it suddenly adds
--help
to the spawnargs when trying to get the test list, which prevents actual test list output. This used to work. I checked manually that test listing incl. xml works when run without --help.The text was updated successfully, but these errors were encountered: