Skip to content

Commit c68ebe8

Browse files
trevnorrisaddaleax
authored andcommitted
makefile: add async-hooks to test and test-ci
PR-URL: #12892 Ref: #11883 Ref: #8531 Reviewed-By: Andreas Madsen <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Sam Roberts <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent e3e56f1 commit c68ebe8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Makefile

+6-2
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,8 @@ test: all
196196
$(MAKE) build-addons-napi
197197
$(MAKE) cctest
198198
$(PYTHON) tools/test.py --mode=release -J \
199-
doctool inspector known_issues message pseudo-tty parallel sequential $(CI_NATIVE_SUITES)
199+
doctool inspector known_issues message pseudo-tty parallel sequential \
200+
async-hooks $(CI_NATIVE_SUITES)
200201
$(MAKE) lint
201202

202203
test-parallel: all
@@ -326,7 +327,7 @@ test-all-valgrind: test-build
326327
$(PYTHON) tools/test.py --mode=debug,release --valgrind
327328

328329
CI_NATIVE_SUITES := addons addons-napi
329-
CI_JS_SUITES := doctool inspector known_issues message parallel pseudo-tty sequential
330+
CI_JS_SUITES := doctool inspector known_issues message parallel pseudo-tty sequential async-hooks
330331

331332
# Build and test addons without building anything else
332333
test-ci-native: LOGLEVEL := info
@@ -418,6 +419,9 @@ test-timers:
418419
test-timers-clean:
419420
$(MAKE) --directory=tools clean
420421

422+
test-async-hooks:
423+
$(PYTHON) tools/test.py --mode=release async-hooks
424+
421425

422426
ifneq ("","$(wildcard deps/v8/tools/run-tests.py)")
423427
test-v8: v8

0 commit comments

Comments
 (0)