diff options
Diffstat (limited to 'app/relay/modules/test.js')
| -rw-r--r-- | app/relay/modules/test.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/relay/modules/test.js b/app/relay/modules/test.js index 8876f7c..259e817 100644 --- a/app/relay/modules/test.js +++ b/app/relay/modules/test.js @@ -33,10 +33,22 @@ const live = { return null } } +const wait = { + type: 'perl', + script: 'test.pl', + params: '--wait', + after: 'buzz', +} +const buzz = { + type: 'perl', + script: 'test.pl', + params: '--buzz', +} export default { name, cwd, activities: { cpu, gpu, live, + wait, buzz, } } |
