Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 1310743 - Enable all suites except crmf, cipher, fips, merge, smi…
…me, ssl with UBSan r=me
  • Loading branch information
Tim Taubert committed Oct 17, 2016
1 parent 74d9173 commit db9927d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions automation/taskcluster/graph/src/extend.js
Expand Up @@ -59,8 +59,8 @@ queue.filter(task => {
}

// Start with BoGo and Gtests on UBSan builds.
if (task.collection == "ubsan" && task.tests &&
task.tests != "bogo" && task.tests != "ssl_gtests gtests") {
if (task.collection == "ubsan" &&
["crmf", "cipher", "fips", "merge", "smime", "ssl"].includes(task.tests)) {
return false;
}

Expand Down

0 comments on commit db9927d

Please sign in to comment.