-
Notifications
You must be signed in to change notification settings - Fork 15
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
Add some testing / debugging docs #176
Conversation
95d46fd
to
96038b6
Compare
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.
Nice documentation! I have a couple of fixes and suggestions on some wordings.
CONTRIBUTING.md
Outdated
If you're interested in helping out but don't see an issue that's for you, please feel free to contact | ||
us on the `Boa` discord. | ||
If you're interested in helping out but don't see an issue that's for | ||
you, please feel free to contact us on the `Boa` discord. |
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.
Let's redirect to our Matrix server instead.
docs/testing.md
Outdated
|
||
#### Specify method test suites | ||
|
||
The test suite can be further specified by further qualifying the path. |
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.
The test suite can be further specified by further qualifying the path. | |
The test suite can be further specified by qualifying the path. |
docs/testing.md
Outdated
#### Debugging single `test262` tests | ||
|
||
When debugging a specific test, the test output can be viewed by running | ||
the test with the following flags. |
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.
the test with the following flags. | |
the test in verbose mode (`-vvv`): |
docs/testing.md
Outdated
Running the above command will output whether the test was failed or | ||
passed, and the test failure output if failed. |
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.
Running the above command will output whether the test was failed or | |
passed, and the test failure output if failed. | |
Running the above command will output whether the test failed or | |
passed, and the test failure output if failed. |
docs/testing.md
Outdated
`/home/nekevss/Projects/boa/test262/test/built-ins/Temporal/Instant/compare/argument-string-limits.js`: starting | ||
`/home/nekevss/Projects/boa/test262/test/built-ins/Temporal/Instant/compare/argument-string-limits.js`: Failed | ||
`/home/nekevss/Projects/boa/test262/test/built-ins/Temporal/Instant/compare/argument-string-limits.js`: result text |
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.
`/home/nekevss/Projects/boa/test262/test/built-ins/Temporal/Instant/compare/argument-string-limits.js`: starting | |
`/home/nekevss/Projects/boa/test262/test/built-ins/Temporal/Instant/compare/argument-string-limits.js`: Failed | |
`/home/nekevss/Projects/boa/test262/test/built-ins/Temporal/Instant/compare/argument-string-limits.js`: result text | |
`/home/user/Projects/boa/test262/test/built-ins/Temporal/Instant/compare/argument-string-limits.js`: starting | |
`/home/user/Projects/boa/test262/test/built-ins/Temporal/Instant/compare/argument-string-limits.js`: Failed | |
`/home/user/Projects/boa/test262/test/built-ins/Temporal/Instant/compare/argument-string-limits.js`: result text |
Co-authored-by: José Julián Espina <[email protected]>
Co-authored-by: José Julián Espina <[email protected]>
Per the title, this PR adds to the testing / debugging docs.
More specifically, this PR adds a general overview on the ways that
temporal_rs
is tested along with some pointers on testing and debugging using Boa.