Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(440)

Side by Side Diff: dart/tests/language/language.status

Issue 8408002: Add a new variable environment for testing, to replace the misusage of 'arch'. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | dart/tools/make_bundle.py » ('j') | dart/tools/test.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2011, 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 # This directory contains tests that are intended to show the 5 # This directory contains tests that are intended to show the
6 # current state of the language. 6 # current state of the language.
7 7
8 # In order to maintain maximum test coverage for all builds, 8 # In order to maintain maximum test coverage for all builds,
9 # please use the following procedure to mark a test 9 # please use the following procedure to mark a test
10 # failed on an architecture other than the one you are working on. 10 # failed on an architecture other than the one you are working on.
11 # 11 #
12 # 1) Copy the old version of the test to 12 # 1) Copy the old version of the test to
13 # tests/language/src/TestName[Dartc|VM]Test.dart. 13 # tests/language/src/TestName[Dartc|VM]Test.dart.
14 # 2) File a bug for the failure due to the language change. 14 # 2) File a bug for the failure due to the language change.
15 # 3) Update the language/src directory with the updated test. 15 # 3) Update the language/src directory with the updated test.
16 16
17 prefix language 17 prefix language
18 18
19 19
20 [ $arch == ia32 || $arch == dartium ] 20 [ $FOOBAR == vm || $FOOBAR == dartium ]
21 ClassTest: Fail # Bug 4504458 (pseudo keyword) 21 ClassTest: Fail # Bug 4504458 (pseudo keyword)
22 NamingTest: Fail # Bug 4504458 (pseudo keyword) 22 NamingTest: Fail # Bug 4504458 (pseudo keyword)
23 SuperTest: Fail # Bug 4995181 23 SuperTest: Fail # Bug 4995181
24 TypeVariableBoundsTest/none: Fail # Bug 5257789 24 TypeVariableBoundsTest/none: Fail # Bug 5257789
25 TypeVariableBoundsTest/02: Fail # Bug 5257789 25 TypeVariableBoundsTest/02: Fail # Bug 5257789
26 TypeVariableBoundsTest/03: Fail # Bug 5257789 26 TypeVariableBoundsTest/03: Fail # Bug 5257789
27 TypeVariableBoundsTest/04: Fail # Bug 5257789 27 TypeVariableBoundsTest/04: Fail # Bug 5257789
28 TypeVariableBoundsTest/07: Fail # Bug 5257789 28 TypeVariableBoundsTest/07: Fail # Bug 5257789
29 TypeVariableScopeTest/03: Fail # Bug 5349550, was 5316513 29 TypeVariableScopeTest/03: Fail # Bug 5349550, was 5316513
30 TypeVariableScopeTest/04: Fail # Bug 5349550, was 5316513 30 TypeVariableScopeTest/04: Fail # Bug 5349550, was 5316513
(...skipping 25 matching lines...) Expand all
56 ConstructorReturnNegativeTest: Fail # Issue 224 56 ConstructorReturnNegativeTest: Fail # Issue 224
57 ConstructorReturnWithInitNegativeTest: Fail # Issue 224 57 ConstructorReturnWithInitNegativeTest: Fail # Issue 224
58 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224 58 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224
59 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 224 59 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 224
60 60
61 NonParameterizedFactory2Test: Fail # Bug 5257789 61 NonParameterizedFactory2Test: Fail # Bug 5257789
62 62
63 # DartC specific tests that should not be run by the VM. 63 # DartC specific tests that should not be run by the VM.
64 *DartcTest: Skip 64 *DartcTest: Skip
65 65
66 [ $arch == ia32 && $mode == debug ] 66 [ $FOOBAR == vm && $mode == debug ]
67 NonParameterizedFactoryTest: Crash # Issue 226 67 NonParameterizedFactoryTest: Crash # Issue 226
68 68
69 # Problems specific to dartc optimized mode 69 # Problems specific to dartc optimized mode
70 [ ($arch == dartc || $arch == chromium) && $mode == release ] 70 [ ($FOOBAR == dartc || $FOOBAR == chromium) && $mode == release ]
71 MethodInvocationTest: Fail # Bug 5392266 71 MethodInvocationTest: Fail # Bug 5392266
72 Label2NegativeTest: Crash # Bug 5318228 72 Label2NegativeTest: Crash # Bug 5318228
73 NullPointerExceptionTest: Fail # Bug 5391976 73 NullPointerExceptionTest: Fail # Bug 5391976
74 CallThroughNullGetterTest: Fail # Bug 5391976 74 CallThroughNullGetterTest: Fail # Bug 5391976
75 Private3Test: Fail # Bug 5391976 75 Private3Test: Fail # Bug 5391976
76 Switch3NegativeTest: Crash # Bug 5318228 76 Switch3NegativeTest: Crash # Bug 5318228
77 BadNamedParametersTest: Fail # Bug 4202974 - release mode is not thr owing NSME 77 BadNamedParametersTest: Fail # Bug 4202974 - release mode is not thr owing NSME
78 CTConst2Test: Fail # Codesite issue 124 78 CTConst2Test: Fail # Codesite issue 124
79 79
80 # Problems specific to dartc debug mode 80 # Problems specific to dartc debug mode
81 [ ($arch == dartc || $arch == chromium) && $mode == debug ] 81 [ ($FOOBAR == dartc || $FOOBAR == chromium) && $mode == debug ]
82 82
83 83
84 [ $arch == dartc || $arch == chromium ] 84 [ $FOOBAR == dartc || $FOOBAR == chromium ]
85 Library4NegativeTest: Fail # Bug 5406175 85 Library4NegativeTest: Fail # Bug 5406175
86 Prefix3NegativeTest: Fail # Bug 5406175 86 Prefix3NegativeTest: Fail # Bug 5406175
87 Prefix11NegativeTest: Fail # Bug 5406175 87 Prefix11NegativeTest: Fail # Bug 5406175
88 Prefix12NegativeTest: Fail # Bug 5406175 88 Prefix12NegativeTest: Fail # Bug 5406175
89 Prefix14Test: Fail # Bug 5406175 89 Prefix14Test: Fail # Bug 5406175
90 Prefix15Test: Skip # Bug 5406175 90 Prefix15Test: Skip # Bug 5406175
91 ConstConstructor1NegativeTest: FAIL # Bug 5142545 91 ConstConstructor1NegativeTest: FAIL # Bug 5142545
92 ConstConstructor2NegativeTest: FAIL # Bug 5142545 92 ConstConstructor2NegativeTest: FAIL # Bug 5142545
93 CTConst3Test: Fail # Codesite Issue 120 93 CTConst3Test: Fail # Codesite Issue 120
94 94
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 172
173 ConstructorReturnNegativeTest: Fail # Issue 225 173 ConstructorReturnNegativeTest: Fail # Issue 225
174 ConstructorReturnWithInitNegativeTest: Fail # Issue 225 174 ConstructorReturnWithInitNegativeTest: Fail # Issue 225
175 ConstructorReturnWithArrowNegativeTest: Fail # Issue 225 175 ConstructorReturnWithArrowNegativeTest: Fail # Issue 225
176 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 225 176 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 225
177 177
178 # VM specific tests that should not be run by DartC. 178 # VM specific tests that should not be run by DartC.
179 *VMTest: Skip 179 *VMTest: Skip
180 180
181 181
182 [ $arch == dartium ] 182 [ $FOOBAR == dartium ]
183 # TODO: These need to be retriaged. 183 # TODO: These need to be retriaged.
184 ExpectTest: Fail 184 ExpectTest: Fail
185 StackTraceTest: Fail 185 StackTraceTest: Fail
186 RichardsTest: Fail 186 RichardsTest: Fail
187 UnboundGetterTest: Fail 187 UnboundGetterTest: Fail
188 Private2Test: Fail 188 Private2Test: Fail
189 Private3Test: Fail 189 Private3Test: Fail
190 190
191 TypedMessageTest: Fail # Bug 5246195 191 TypedMessageTest: Fail # Bug 5246195
192 192
193 [ $arch == x64 ] 193 [ $arch == x64 ]
194 *: Skip 194 *: Skip
195 195
196 [ $arch == simarm ] 196 [ $arch == simarm ]
197 *: Skip 197 *: Skip
198 198
199 [ $arch == arm ] 199 [ $arch == arm ]
200 *: Skip 200 *: Skip
OLDNEW
« no previous file with comments | « no previous file | dart/tools/make_bundle.py » ('j') | dart/tools/test.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698