Relocate service library tests and hookup a working status file

BUG=

Review URL: https://codereview.chromium.org//1071363002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45043 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
johnmccutchan@google.com 2015-04-09 22:57:59 +00:00
parent 8a0194b846
commit 647c355f8c
32 changed files with 14 additions and 8 deletions

View file

@ -2,13 +2,19 @@
# 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.
[ $arch == simarm || $arch == simmips || $arch == simarm64]
observatory/test/*: Skip # Slow
# Tests that depend on token positions (which differ in release mode).
[ $mode == release ]
debugging_test: Skip
# Disable on simulators.
[ $arch == simarm || $arch == simmips || $arch == simarm64]
*: Skip # Slow
[ $compiler == dart2dart ]
# The transformations of dart2dart are not guaranteed to preserve the
# state/properties of the VM that the Observatory tests are inspecting.
observatory/test/*: Skip
[ $compiler == dart2dart ]
*: Skip
[ $browser ]
observatory/test/*: SkipByDesign # Uses dart:io
# All tests use dart:io
[ $browser || $compiler == dart2js ]
*: SkipByDesign

View file

@ -29,7 +29,7 @@ final TEST_SUITE_DIRECTORIES = [
new Path('pkg'),
new Path('third_party/pkg_tested'),
new Path('runtime/tests/vm'),
new Path('runtime/observatory'),
new Path('runtime/observatory/tests/service'),
new Path('samples'),
new Path('samples-dev'),
new Path('tests/benchmark_smoke'),

View file

@ -14,7 +14,7 @@ import "runtime_configuration.dart" show RuntimeConfiguration;
const List<String> defaultTestSelectors =
const ['samples', 'standalone', 'corelib', 'co19', 'language',
'isolate', 'vm', 'html', 'benchmark_smoke',
'utils', 'lib', 'pkg', 'analyze_library', 'observatory',
'utils', 'lib', 'pkg', 'analyze_library', 'service',
'pkg_tested'];
/**