OLD | NEW |
(Empty) | |
| 1 # Don't run any test-like files that show up in packages directories. It |
| 2 # shouldn't be necessary to run "pub install" in these packages, but if you do |
| 3 # it shouldn't break the tests. |
| 4 */packages/*/*: Skip |
| 5 */*/packages/*/*: Skip |
| 6 */*/*/packages/*/*: Skip |
| 7 */*/*/*/packages/*/*: Skip |
| 8 */*/*/*/*/packages/*/*: Skip |
| 9 |
| 10 [ $runtime == vm ] |
| 11 *: Skip |
| 12 |
| 13 [ $compiler == dart2js ] |
| 14 test/*: Skip # only run build/ output tests with dart2js |
| 15 |
| 16 [ $compiler == dart2js && $mode == debug ] |
| 17 build/test/demo_app_test: Pass, Timeout |
| 18 |
| 19 [ $compiler == none && ($runtime == dartium || $runtime == ContentShellOnAndroid
) ] |
| 20 test/demo_app_test: Pass, RuntimeError # Issue 18931 |
OLD | NEW |