OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 # Don't run any test-like files that show up in packages directories. It |
| 6 # shouldn't be necessary to run "pub install" in these packages, but if you do |
| 7 # it shouldn't break the tests. |
| 8 */packages/*/*: SkipByDesign |
| 9 */*/packages/*/*: SkipByDesign |
| 10 */*/*/packages/*/*: SkipByDesign |
| 11 */*/*/*/packages/*/*: SkipByDesign |
| 12 */*/*/*/*/packages/*/*: SkipByDesign |
| 13 |
| 14 # We need a hook in package-bots to invoke pub-build in nested folders before we |
| 15 # can run these tests: |
| 16 e2e_test/*: Skip |
| 17 build/e2e_test/*: Skip |
| 18 |
| 19 # Invalid once built, tests pre-build behavior. |
| 20 build/test/html_import_annotation_test: SkipByDesign |
| 21 |
| 22 [ $compiler == none && ($runtime == dartium || $runtime == ContentShellOnAndroid
) ] |
| 23 test/interop_test: Pass, RuntimeError # Issue 18931 |
| 24 |
| 25 [ $compiler == dart2js && $csp && $runtime == drt ] |
| 26 build/test/interop_test: Fail # Issue 19329 |
| 27 |
| 28 [ $runtime == vm || $runtime == d8 || $runtime == jsshell ] |
| 29 test/*: SkipByDesign # uses dart:html |
| 30 build/test/*: SkipByDesign # uses dart:html |
| 31 e2e_test/html_imports/test/*: SkipByDesign # uses dart:html |
| 32 build/e2e_test/html_imports/test/*: SkipByDesign # uses dart:html |
| 33 |
| 34 [ $compiler == dart2js ] |
| 35 test/*: SkipByDesign # use pub-build to run tests (they need the companion .html
file) |
| 36 |
| 37 [ $browser ] |
| 38 test/build/*: SkipByDesign # vm only tests |
| 39 build/test/build/*: SkipByDesign # vm only tests |
OLD | NEW |