| # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
| # for details. All rights reserved. Use of this source code is governed by a | |
| # BSD-style license that can be found in the LICENSE file. | |
| import test_runner | |
| import utils | |
| # Constants used for test outcomes | |
| SKIP = 'skip' | |
| FAIL = 'fail' | |
| PASS = 'pass' | |
| OKAY = 'okay' | |
| TIMEOUT = 'timeout' | |
| CRASH = 'crash' | |
| SLOW = 'slow' | |
| HOST_CPUS = utils.GuessCpus() | |
| USE_DEFAULT_CPUS = -1 |