Skip to content

Commit

Permalink
Bug 1310648 - Enable Gtests on UBSan runs r=me
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Taubert committed Oct 17, 2016
1 parent 310132e commit 74d9173
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions automation/taskcluster/graph/src/extend.js
Expand Up @@ -58,8 +58,9 @@ queue.filter(task => {
}
}

// Start with BoGo on UBSan builds.
if (task.collection == "ubsan" && task.tests && task.tests != "bogo") {
// Start with BoGo and Gtests on UBSan builds.
if (task.collection == "ubsan" && task.tests &&
task.tests != "bogo" && task.tests != "ssl_gtests gtests") {
return false;
}

Expand Down

0 comments on commit 74d9173

Please sign in to comment.