| Index: dart/frog/presubmit.py
|
| diff --git a/dart/frog/presubmit.py b/dart/frog/presubmit.py
|
| index 28befc21b4ac1a39e026a57b7e6c7254cc40d58c..91005052bdc6ec9b39f7d792883ab652af037111 100755
|
| --- a/dart/frog/presubmit.py
|
| +++ b/dart/frog/presubmit.py
|
| @@ -151,9 +151,11 @@ def main():
|
| cmd = test_cmd + ['--component=frogsh', 'leg', 'leg_only']
|
| RunCommand(*cmd, verbose=True)
|
|
|
| - # Run leg on most of the tests.
|
| - # TODO(ahe): Add co19 tests once leg gets more mature.
|
| - cmd = test_cmd + ['--component=leg', 'language', 'corelib', 'leg_only']
|
| + # Run leg on "built-in" tests.
|
| + cmd = test_cmd + ['--component=leg']
|
| + RunCommand(*cmd, verbose=True)
|
| +
|
| + cmd = test_cmd + ['--component=leg', 'leg_only']
|
| RunCommand(*cmd, verbose=True)
|
|
|
| cmd = test_cmd + ['--component=vm', 'leg']
|
|
|