-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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: purge stale disabled tests #2045
Conversation
LGTM. I don't see a reason to keep them around. Can you put your rationale in the commit log? |
sweet, they're in git anyways so I'm not sure why they were kept in the first place |
Tests in the disabled directory are not used by Makefile nor by the CI. Other than a single 2015 commit that puts 'use strict' in each test, many of them haven't been touched in years. This removes all the disabled tests that have been unmodified since 2011 (with the exception of the 'use strict' modification mentioned above).
Commit message amended per @bnoordhuis |
LGTM |
We (Ryan, Bert, Igor, me) moved a lot of tests to test/disabled when we were porting node.js to Windows, piecemeal moving them back whenever libuv grew the required functionality. What's left are tests for functionality that was too UNIX-specific or too libev/libeio-centric. |
Tests in the disabled directory are not used by Makefile nor by the CI. Other than a single 2015 commit that puts 'use strict' in each test, many of them haven't been touched in years. This removes all the disabled tests that have been unmodified since 2011 (with the exception of the 'use strict' modification mentioned above). PR-URL: nodejs#2045 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Evan Lucas <[email protected]>
Merged in 856c11f |
Tests in the disabled directory are not used by Makefile nor by the CI. Other than a single 2015 commit that puts 'use strict' in each test, many of them haven't been touched in years. This removes all the disabled tests that have been unmodified since 2011 (with the exception of the 'use strict' modification mentioned above). PR-URL: nodejs#2045 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Evan Lucas <[email protected]>
There are many tests in the
test/disabled
directory. These tests are not used byMakefile
nor by the CI. Other than a single 2015 commit that puts'use strict'
in each test, many of them haven't been touched in years.This removes all the disabled tests that have been unmodified since 2011 (with the exception of the
'use strict'
modification mentioned above).I concede in advance that my main motive is a perhaps-misguided mission to eliminate every
TODO
comment possible in the code base.