OLD | NEW |
---|---|
1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2017, 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 | |
5 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] | |
6 compare_to2_test: Fail # Bug 4018 | |
7 | |
8 [ $compiler == dart2js ] | |
9 bit_twiddling_bigint_test: RuntimeError # Requires bigint support. | |
10 compare_to2_test: RuntimeError, OK # Requires bigint support. | |
11 | |
12 [ ($compiler == dartk || $compiler == dartkp) && ($runtime == vm || $runtime == dart_precompiled) ] | |
13 bool_from_environment2_test/01: MissingCompileTimeError | |
14 bool_from_environment2_test/02: MissingCompileTimeError | |
15 bool_from_environment2_test/03: MissingCompileTimeError | |
16 bool_from_environment2_test/04: MissingCompileTimeError | |
17 bool_from_environment2_test/05: MissingCompileTimeError | |
18 compare_to2_test: RuntimeError | |
19 | |
20 [ $compiler == none && ($runtime == drt || $runtime == dartium) ] | |
Bob Nystrom
2017/07/18 23:43:44
dartium is gone now, so just:
[ $compiler == none
bkonyi
2017/07/19 15:06:21
Done.
| |
21 bool_from_environment2_test: Skip | |
22 bool_from_environment_test: Skip | |
23 | |
24 [ $runtime == flutter ] | |
25 bool_from_environment_test: Fail # Flutter Issue 9111 | |
OLD | NEW |