summaryrefslogtreecommitdiff
path: root/automation/taskcluster
diff options
context:
space:
mode:
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,