Chromium Code Reviews| Index: frog/presubmit.py |
| =================================================================== |
| --- frog/presubmit.py (revision 5078) |
| +++ frog/presubmit.py (working copy) |
| @@ -170,7 +170,11 @@ |
| cmd = test_cmd + ['--component=leg'] |
| RunCommand(*cmd, verbose=True) |
| + # Run leg on client tests. |
| + cmd = test_cmd + ['--component=legium', 'client'] |
|
ahe
2012/03/07 12:29:28
How long does it take to run this?
ngeoffray
2012/03/07 12:40:16
20 seconds on my machine
ahe
2012/03/07 12:49:59
OK. That is good. This is because you're only runn
|
| + RunCommand(*cmd, verbose=True) |
| + |
| if __name__ == '__main__': |
| try: |
| sys.exit(main()) |