-
-
Notifications
You must be signed in to change notification settings - Fork 35.4k
tools: add test-all-suites to Makefile #25799
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There is currently no Makefile target that runs every test suite. This adds one.
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -461,6 +461,10 @@ test-all: test-build ## Run everything in test/. | |
| test-all-valgrind: test-build | ||
| $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=debug,release --valgrind | ||
|
|
||
| .PHONY: test-all-suites | ||
| test-all-suites: | bench-addons-build | ||
|
Trott marked this conversation as resolved.
Outdated
|
||
| $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) test/* | ||
|
Contributor
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. AFAICT We don't need the
Contributor
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. [side note] Could we have a target that is not dependent on anything else?
Member
Author
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. Without |
||
|
|
||
| CI_NATIVE_SUITES ?= addons js-native-api node-api | ||
| CI_JS_SUITES ?= default | ||
| CI_DOC := doctool | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.