-
Notifications
You must be signed in to change notification settings - Fork 29.7k
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
doc: Change test option at STEP 5: Test in CONTRIBUTING.md #12830
Changes from 1 commit
ce884c0
7832bb6
def6cf0
c05c325
fd8324e
2d52243
f7a15d7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -188,8 +188,8 @@ can use this syntax to run it exactly as the test harness would: | |
$ python tools/test.py --mode=release parallel/test-stream2-transform | ||
``` | ||
|
||
If you want to check the other option, please refer to the help with the option | ||
`--help` | ||
If you want to check the other options, please refer to the help with the | ||
option `--help` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the word There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Several options
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thank you for suggestions |
||
|
||
```text | ||
$ python tools/test.py --help | ||
|
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.
Can we add a
-J
? Given that it says "exactly as the test harness would" we should probably be exact:LGTM otherwise.
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.
I think it would be run "exactly as the test harness would" either way given that
tools/test.py
is the test harness, regardless of the options.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.
I think that users would understand by looking at help.
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.
I assume the test harness means
make test
, otherwise that part of the sentence is kinda meaningless. The reason I think this is necessary is that using-J
can cause subtle bugs (when tests interact with each other), and that is impossible to debug if you don't use the flag by default.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.
Yeah, I agree with that if we are talking about running multiple tests. But that sentence is about running a single test, isn't it? Do I miss the point?
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.
Maaaybe, I think I'd be +1 on that, but I suspect it might be contentious...
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.
Other option, a wrapper script
test-ci
(.sh & .cmd).This one I'm doing
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.
Doesn't that duplicate the
Makefile
andvcbuild.bat
test-ci
target? What's the gain?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'll take $*, so it's useful for single files, or single suits.
I don't know about
make test-ci
butvcbuild test-ci
builds first (with Feet of clay), very demotivating.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.
PTAL #12874