Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 1334106 - Fix groupSymbol for MPI fuzzing runs r=me
  • Loading branch information
Tim Taubert committed Feb 9, 2017
1 parent 8b1cf23 commit f6bdd02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automation/taskcluster/graph/src/extend.js
Expand Up @@ -326,7 +326,7 @@ async function scheduleFuzzing() {

// Schedule fuzzing runs.
let run_base = merge(base, {parent: task_build, kind: "test"});
let mpi_base = merge(run_base, {groupSymbol: "MPI"});
let mpi_base = merge(run_base, {group: "MPI"});
scheduleFuzzingRun(run_base, "CertDN", "certDN", 4096);
scheduleFuzzingRun(run_base, "Hash", "hash", 4096);
scheduleFuzzingRun(run_base, "QuickDER", "quickder", 10000);
Expand Down

0 comments on commit f6bdd02

Please sign in to comment.