-
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
test: fix test-trace-events-dns #22674
Conversation
Since this test is not run in our usual CI run, we have to use the custom-suites job to exercise it. Other than that, the lint job is the only thing that is affected by it. CI: https://ci.nodejs.org/job/node-test-commit-custom-suites/678/ (And here's the one from node-daily-master last night showing it failing: https://ci.nodejs.org/job/node-test-commit-custom-suites/675/) |
Lint is green, custom job is green. Full CI out of abundance of caution (as this thing shouldn't be executed in a ordinary CI): https://ci.nodejs.org/job/node-test-pull-request/16989/ |
Test is using `common.fileExists()` which has been removed. There is no need to check that the file exists as the attempt to read the file in the next line will fail if the file does not exist. Remove existence check. PR-URL: nodejs#22674 Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Refael Ackermann <[email protected]>
Fast-tracked (👍 by refack, danbev, and addaleax). Landed in 120814b |
Test is using `common.fileExists()` which has been removed. There is no need to check that the file exists as the attempt to read the file in the next line will fail if the file does not exist. Remove existence check. PR-URL: #22674 Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Refael Ackermann <[email protected]>
Test is using `common.fileExists()` which has been removed. There is no need to check that the file exists as the attempt to read the file in the next line will fail if the file does not exist. Remove existence check. PR-URL: #22674 Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Refael Ackermann <[email protected]>
Test is using `common.fileExists()` which has been removed. There is no need to check that the file exists as the attempt to read the file in the next line will fail if the file does not exist. Remove existence check. PR-URL: #22674 Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Refael Ackermann <[email protected]>
Test is using
common.fileExists()
which has been removed. There is noneed to check that the file exists as the attempt to read the file in
the next line will fail if the file does not exist. Remove existence
check.
This has broken node-daily-master (as that's where internet tests are run). Please 👍 to fast-track to get it fixed.
@nodejs/testing
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes