-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
document make targets #4653
document make targets #4653
Conversation
fixes #4647 License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
@@ -60,9 +60,6 @@ test_sharness_expensive: export TEST_EXPENSIVE=1 | |||
test_sharness_expensive: test_sharness_short | |||
.PHONY: test_sharness_expensive | |||
|
|||
test_sharness_race: GOFLAGS += -race |
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.
why is this going away?
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.
It doesn't do anything.
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.
It is unclear what if the test_go_race
target runs all the tests or just the short ones. It is also not really needed. I would remove it and document to enable race detection use something like GOFLAGS=-race make test_go_expensive
or if this is used with out automatic testing just document it.
Can we figure out the random test failures and make issues for them? Its starting to get uncomfortable. |
@whyrusleeping the jenkins one looks like a jenkins reboot. The travis one looks like an issue with error handling in the commands library: #4670. |
License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
Let's do that later. |
Closes #4647.