| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 3 # for details. All rights reserved. Use of this source code is governed by a | 3 # for details. All rights reserved. Use of this source code is governed by a |
| 4 # BSD-style license that can be found in the LICENSE file. | 4 # BSD-style license that can be found in the LICENSE file. |
| 5 | 5 |
| 6 import os | 6 import os |
| 7 import subprocess | 7 import subprocess |
| 8 import sys | 8 import sys |
| 9 import time | 9 import time |
| 10 | 10 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 | 85 |
| 86 # Run frogium client tests. This is a pretty quick test but tends to uncover | 86 # Run frogium client tests. This is a pretty quick test but tends to uncover |
| 87 # different issues due to the size/complexity of the DOM APIs. | 87 # different issues due to the size/complexity of the DOM APIs. |
| 88 cmd = test_cmd + ['--component=frogium', 'client'] | 88 cmd = test_cmd + ['--component=frogium', 'client'] |
| 89 RunCommand(*cmd, verbose=True) | 89 RunCommand(*cmd, verbose=True) |
| 90 | 90 |
| 91 # TODO(jimhug): Consider adding co19 back when it delivers more value | 91 # TODO(jimhug): Consider adding co19 back when it delivers more value |
| 92 # than pain. | 92 # than pain. |
| 93 # Run leg and frogsh on most of the tests. | 93 # Run leg and frogsh on most of the tests. |
| 94 cmd = test_cmd + ['--component=frogsh,leg', 'language', 'corelib', 'leg', | 94 cmd = test_cmd + ['--component=frogsh,leg', 'language', 'corelib', 'leg', |
| 95 'isolate', 'peg', 'leg_only', 'frog'] | 95 'isolate', 'peg', 'leg_only', 'frog', 'css'] |
| 96 RunCommand(*cmd, verbose=True) | 96 RunCommand(*cmd, verbose=True) |
| 97 | 97 |
| 98 | |
| 99 if __name__ == '__main__': | 98 if __name__ == '__main__': |
| 100 try: | 99 try: |
| 101 sys.exit(main(sys.argv)) | 100 sys.exit(main(sys.argv)) |
| 102 except Error as e: | 101 except Error as e: |
| 103 sys.stderr.write('%s\n' % e) | 102 sys.stderr.write('%s\n' % e) |
| 104 sys.exit(1) | 103 sys.exit(1) |
| OLD | NEW |