| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -478,7 +478,7 @@ JS_SUITES ?= default | |||
| 478 | 478 | NATIVE_SUITES ?= addons js-native-api node-api | |
| 479 | 479 | # CI_* variables should be kept synchronized with the ones in vcbuild.bat | |
| 480 | 480 | CI_NATIVE_SUITES ?= $(NATIVE_SUITES) benchmark | |
| 481 | - CI_JS_SUITES ?= $(JS_SUITES) | ||
| 481 | + CI_JS_SUITES ?= $(JS_SUITES) pummel | ||
| 482 | 482 | ifeq ($(node_use_openssl), false) | |
| 483 | 483 | CI_DOC := doctool | |
| 484 | 484 | else | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -574,7 +574,7 @@ def RunCommand(self, command, env): | |||
| 574 | 574 | full_command = self.context.processor(command) | |
| 575 | 575 | output = Execute(full_command, | |
| 576 | 576 | self.context, | |
| 577 | - self.context.GetTimeout(self.mode), | ||
| 577 | + self.context.GetTimeout(self.mode, self.config.section), | ||
| 578 | 578 | env, | |
| 579 | 579 | disable_core_files = self.disable_core_files) | |
| 580 | 580 | return TestOutput(self, | |
@@ -940,8 +940,11 @@ def GetVm(self, arch, mode): | |||
| 940 | 940 | ||
| 941 | 941 | return name | |
| 942 | 942 | ||
| 943 | - def GetTimeout(self, mode): | ||
| 944 | - return self.timeout * TIMEOUT_SCALEFACTOR[ARCH_GUESS or 'ia32'][mode] | ||
| 943 | + def GetTimeout(self, mode, section=''): | ||
| 944 | + timeout = self.timeout * TIMEOUT_SCALEFACTOR[ARCH_GUESS or 'ia32'][mode] | ||
| 945 | + if section == 'pummel': | ||
| 946 | + timeout = timeout * 4 | ||
| 947 | + return timeout | ||
| 945 | 948 | ||
| 946 | 949 | def RunTestCases(cases_to_run, progress, tasks, flaky_tests_mode): | |
| 947 | 950 | progress = PROGRESS_INDICATORS[progress](cases_to_run, flaky_tests_mode) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -19,7 +19,7 @@ set JS_SUITES=default | |||
| 19 | 19 | set NATIVE_SUITES=addons js-native-api node-api | |
| 20 | 20 | @rem CI_* variables should be kept synchronized with the ones in Makefile | |
| 21 | 21 | set "CI_NATIVE_SUITES=%NATIVE_SUITES% benchmark" | |
| 22 | - set "CI_JS_SUITES=%JS_SUITES%" | ||
| 22 | + set "CI_JS_SUITES=%JS_SUITES% pummel" | ||
| 23 | 23 | set CI_DOC=doctool | |
| 24 | 24 | @rem Same as the test-ci target in Makefile | |
| 25 | 25 | set "common_test_suites=%JS_SUITES% %NATIVE_SUITES%&set build_addons=1&set build_js_native_api_tests=1&set build_node_api_tests=1" | |
| Back | FazBrowse Home | New Git URL |
0 commit comments