Files
sdk/tools/testing/__init__.py
T
2011-10-05 16:50:50 +00:00

21 lines
443 B
Python

# 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