-
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
build: add a testclean target #29094
Conversation
This commit adds a target named testclean to allow for cleaning the temporary files generated during a test run without having to use the clean target.
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 you add this to vcbuild.bat
too?
I'll take a look at adding this to |
Looks like |
(We do.) |
@Trott I've added a testclean target which can be called using: danbev@win2 MINGW64 ~/node (master)
$ ./vcbuild.bat testclean
deleting test/.tmp* Sorry this took so long, I had to set up a windows vm on azure as I had deleted my local window vm due to resource constraints. |
This commit adds a target named testclean to allow for cleaning the temporary files generated during a test run without having to use the clean target. PR-URL: #29094 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Rich Trott <[email protected]>
Landed in a890771 |
This commit adds a target named testclean to allow for cleaning the temporary files generated during a test run without having to use the clean target. PR-URL: #29094 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Rich Trott <[email protected]>
This commit adds a target named
testclean
to allow for cleaning thetemporary files generated during a test run without having to use the
clean
target.Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes