diff options
author | Ori Bernstein <ori@mmarkovcorp.com> | 2017-09-04 12:54:29 -0700 |
---|---|---|
committer | Ori Bernstein <ori@mmarkovcorp.com> | 2017-09-04 12:54:29 -0700 |
commit | 037c644bc26ee88d2fd2b0c9988bbcbdeaf46659 (patch) | |
tree | 166c71e3cca3a47aa3f238e2dfa55ab77dc19814 /mbld/deps.myr | |
parent | bff5417fece9ae857ba09de40f1a0823bead52fc (diff) | |
download | mc-037c644bc26ee88d2fd2b0c9988bbcbdeaf46659.tar.gz |
support benchmark command targets.
Diffstat (limited to 'mbld/deps.myr')
-rw-r--r-- | mbld/deps.myr | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mbld/deps.myr b/mbld/deps.myr index 1ed9981..b68e80f 100644 --- a/mbld/deps.myr +++ b/mbld/deps.myr @@ -225,6 +225,10 @@ const cmddeps = {b, name, ct a = std.htgetv(b.deps.targs, "test", [][:]) std.slpush(&a, n) std.htput(b.deps.targs, "test", a) + elif ct.isbench + a = std.htgetv(b.deps.targs, "bench", [][:]) + std.slpush(&a, n) + std.htput(b.deps.targs, "bench", a) elif gen pid = run(ct.cmd, ct.dir) match std.wait(pid) |