summaryrefslogtreecommitdiff
path: root/automation/taskcluster
diff options
context:
space:
mode:
authorKai Engert <kaie@kuix.de>2019-11-08 09:14:53 +0100
committerKai Engert <kaie@kuix.de>2019-11-08 09:14:53 +0100
commit14374c8e89615792f7fe06d93743f3e6fd5dc025 (patch)
tree79caea94c58a4614e0898b02b03971d3499ae6c1 /automation/taskcluster
parent42ed4931eac2bdbab3a4c3abbdf1af8dd9a1cb51 (diff)
downloadnss-hg-14374c8e89615792f7fe06d93743f3e6fd5dc025.tar.gz
Bug 1579836 - Execute NSPR tests as part of NSS continuous integration. r=jcj
Diffstat (limited to 'automation/taskcluster')
-rw-r--r--automation/taskcluster/graph/src/extend.js9
1 files changed, 3 insertions, 6 deletions
diff --git a/automation/taskcluster/graph/src/extend.js b/automation/taskcluster/graph/src/extend.js
index 762198b2e..a52bab8d0 100644
--- a/automation/taskcluster/graph/src/extend.js
+++ b/automation/taskcluster/graph/src/extend.js
@@ -354,8 +354,7 @@ async function scheduleMac(name, base, args = "") {
base.collection != "asan" &&
base.collection != "fips" &&
base.collection != "fuzz")) {
- let nspr_gyp = gyp_cmd + "--nspr-only --nspr-test-build ";
- // TODO (bug 1385039): nspr_gyp += "--nspr-test-run ";
+ let nspr_gyp = gyp_cmd + "--nspr-only --nspr-test-build --nspr-test-run ";
let nspr_build = merge(build_base_without_command_symbol, {
command: [
MAC_CHECKOUT_CMD,
@@ -424,8 +423,7 @@ async function scheduleLinux(name, overrides, args = "") {
overrides.collection != "asan" &&
overrides.collection != "fips" &&
overrides.collection != "fuzz")) {
- let nspr_gyp = checkout_and_gyp + "--nspr-only --nspr-test-build ";
- // TODO (bug 1385039): nspr_gyp += "--nspr-test-run ";
+ let nspr_gyp = checkout_and_gyp + "--nspr-only --nspr-test-build --nspr-test-run ";
let nspr_base = merge({
command: [
@@ -868,8 +866,7 @@ async function scheduleWindows(name, base, build_script) {
base.collection != "fips" &&
base.collection != "fuzz")) {
let nspr_gyp =
- `bash -c 'nss/automation/taskcluster/windows/${build_script} --nspr-only --nspr-test-build'`;
- // TODO (bug 1385039): add --nspr-test-run
+ `bash -c 'nss/automation/taskcluster/windows/${build_script} --nspr-only --nspr-test-build --nspr-test-run'`;
let nspr_build = merge(build_without_command_symbol, {
command: [
WINDOWS_CHECKOUT_CMD,