OLD | NEW |
---|---|
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 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. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 # Don't run any test-like files that show up in packages directories. It | 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 | 6 # shouldn't be necessary to run "pub install" in these packages, but if you do |
7 # it shouldn't break the tests. | 7 # it shouldn't break the tests. |
8 */packages/*/*: Skip | 8 */packages/*/*: Skip |
9 */*/packages/*/*: Skip | 9 */*/packages/*/*: Skip |
10 */*/*/packages/*/*: Skip | 10 */*/*/packages/*/*: Skip |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
238 | 238 |
239 [ $arch == mips ] | 239 [ $arch == mips ] |
240 *: Skip # Issue 13650 | 240 *: Skip # Issue 13650 |
241 | 241 |
242 [ $arch == arm ] | 242 [ $arch == arm ] |
243 *: Skip # Issue 13624 | 243 *: Skip # Issue 13624 |
244 | 244 |
245 [ $arch == simarm || $arch == simmips ] | 245 [ $arch == simarm || $arch == simmips ] |
246 barback/test/too_many_open_files_test: Pass, Slow, Fail # 14220 | 246 barback/test/too_many_open_files_test: Pass, Slow, Fail # 14220 |
247 third_party/html5lib/test/tokenizer_test: Pass, Slow | 247 third_party/html5lib/test/tokenizer_test: Pass, Slow |
248 watcher/test/no_subscription_test: Pass, Fail # Issue 13705. | |
249 | 248 |
250 # Skip serialization test that explicitly has no library declaration in the | 249 # Skip serialization test that explicitly has no library declaration in the |
251 # test on Dartium, which requires all tests to have a library. | 250 # test on Dartium, which requires all tests to have a library. |
252 [ $compiler == none && ( $runtime == dartium || $runtime == drt ) ] | 251 [ $compiler == none && ( $runtime == dartium || $runtime == drt ) ] |
253 serialization/test/no_library_test: Skip # Expected Failure | 252 serialization/test/no_library_test: Skip # Expected Failure |
254 serialization/test/serialization_test: Fail # 13921 | 253 serialization/test/serialization_test: Fail # 13921 |
255 unittest/test/unittest_async_exception_test: Fail # 13921 | 254 unittest/test/unittest_async_exception_test: Fail # 13921 |
256 unittest/test/unittest_async_setup_teardown_test: Fail # 13921 | 255 unittest/test/unittest_async_setup_teardown_test: Fail # 13921 |
257 unittest/test/unittest_completion_test: Fail # 13921 | 256 unittest/test/unittest_completion_test: Fail # 13921 |
258 unittest/test/unittest_correct_callback_test: Fail # 13921 | 257 unittest/test/unittest_correct_callback_test: Fail # 13921 |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
372 scheduled_test/test/scheduled_test/out_of_band_task_test: StaticWarning | 371 scheduled_test/test/scheduled_test/out_of_band_task_test: StaticWarning |
373 scheduled_test/test/scheduled_test/set_up_test: StaticWarning | 372 scheduled_test/test/scheduled_test/set_up_test: StaticWarning |
374 scheduled_test/test/scheduled_test/signal_error_test: StaticWarning | 373 scheduled_test/test/scheduled_test/signal_error_test: StaticWarning |
375 scheduled_test/test/scheduled_test/simple_test: StaticWarning | 374 scheduled_test/test/scheduled_test/simple_test: StaticWarning |
376 scheduled_test/test/scheduled_test/task_return_value_test: StaticWarning | 375 scheduled_test/test/scheduled_test/task_return_value_test: StaticWarning |
377 scheduled_test/test/scheduled_test/timeout_test: StaticWarning | 376 scheduled_test/test/scheduled_test/timeout_test: StaticWarning |
378 scheduled_test/test/scheduled_test/wrap_async_test: StaticWarning | 377 scheduled_test/test/scheduled_test/wrap_async_test: StaticWarning |
379 scheduled_test/test/scheduled_test/wrap_future_test: StaticWarning | 378 scheduled_test/test/scheduled_test/wrap_future_test: StaticWarning |
380 unittest/test/matchers_test: StaticWarning | 379 unittest/test/matchers_test: StaticWarning |
381 unittest/test/mock_test: StaticWarning | 380 unittest/test/mock_test: StaticWarning |
382 watcher/test/directory_watcher_test: StaticWarning | 381 watcher/test/*: StaticWarning |
Bob Nystrom
2013/11/06 19:24:04
What's this for? Can it be fixed?
nweiz
2013/11/07 00:46:37
This is the same warning that was there before. I'
| |
383 watcher/test/no_subscription_test: StaticWarning | 382 |
384 watcher/test/ready_test: StaticWarning | 383 [ $runtime == vm && ($system == windows || $system == macos) ] |
384 watcher/test/*/linux_test: Skip | |
385 | |
386 [ $runtime == vm && $system == linux ] | |
387 watcher/test/*/linux_test: Pass, Slow # Issue 14606 | |
Bob Nystrom
2013/11/06 19:24:04
Before only no_subscription_test was flaky. Now al
nweiz
2013/11/07 00:46:37
This isn't a flaky annotation, it's a slow annotat
| |
OLD | NEW |