diff options
author | Jesse Wilson <jessewilson@google.com> | 2010-04-06 20:11:13 -0700 |
---|---|---|
committer | Jesse Wilson <jessewilson@google.com> | 2010-04-06 20:11:13 -0700 |
commit | c7ddaaa9be81bfe98e8949f52b2fceb763a13606 (patch) | |
tree | b6a3bbe12de19e234626f7e03f5837affca231c4 /tools/runner/lib/TestActivity.java | |
parent | 4033c2cf31407aabb45f469771c00534b43a20e9 (diff) |
Adding support for command line args to vogar-initiated processes.
Also adding monitor timeouts for use by the continuous build.
From the huge number of files in this relatively simple CL, it's
becoming clear that we need to simplify vogar's internals!
Diffstat (limited to 'tools/runner/lib/TestActivity.java')
-rw-r--r-- | tools/runner/lib/TestActivity.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/runner/lib/TestActivity.java b/tools/runner/lib/TestActivity.java index 6e6d09f198..39a657599b 100644 --- a/tools/runner/lib/TestActivity.java +++ b/tools/runner/lib/TestActivity.java @@ -48,7 +48,7 @@ public class TestActivity extends Activity { 1, Threads.daemonThreadFactory()); executor.submit(new Runnable() { public void run() { - new TestRunner().run(); + new TestRunner().run(args); } }); executor.shutdown(); |