| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 'regress/short-circuit': [SKIP], | 241 'regress/short-circuit': [SKIP], |
| 242 'stack-traces-overflow': [SKIP], | 242 'stack-traces-overflow': [SKIP], |
| 243 'unicode-test': [SKIP], | 243 'unicode-test': [SKIP], |
| 244 'whitespaces': [SKIP], | 244 'whitespaces': [SKIP], |
| 245 | 245 |
| 246 # TODO(mstarzinger): Takes too long with TF. | 246 # TODO(mstarzinger): Takes too long with TF. |
| 247 'array-sort': [PASS, NO_VARIANTS], | 247 'array-sort': [PASS, NO_VARIANTS], |
| 248 }], # 'gc_stress == True' | 248 }], # 'gc_stress == True' |
| 249 | 249 |
| 250 ############################################################################## | 250 ############################################################################## |
| 251 ['no_i18n', { | |
| 252 # Don't call runtime functions that don't exist without i18n support. | |
| 253 'runtime-gen/availablelocalesof': [SKIP], | |
| 254 'runtime-gen/breakiteratoradopttext': [SKIP], | |
| 255 'runtime-gen/breakiteratorbreaktype': [SKIP], | |
| 256 'runtime-gen/breakiteratorbreaktype': [SKIP], | |
| 257 'runtime-gen/breakiteratorcurrent': [SKIP], | |
| 258 'runtime-gen/breakiteratorfirst': [SKIP], | |
| 259 'runtime-gen/breakiteratornext': [SKIP], | |
| 260 'runtime-gen/canonicalizelanguagetag': [SKIP], | |
| 261 'runtime-gen/createbreakiterator': [SKIP], | |
| 262 'runtime-gen/createcollator': [SKIP], | |
| 263 'runtime-gen/getdefaulticulocale': [SKIP], | |
| 264 'runtime-gen/getimplfrominitializedintlobject': [SKIP], | |
| 265 'runtime-gen/getlanguagetagvariants': [SKIP], | |
| 266 'runtime-gen/internalcompare': [SKIP], | |
| 267 'runtime-gen/internaldateformat': [SKIP], | |
| 268 'runtime-gen/internaldateparse': [SKIP], | |
| 269 'runtime-gen/internalnumberformat': [SKIP], | |
| 270 'runtime-gen/internalnumberparse': [SKIP], | |
| 271 'runtime-gen/isinitializedintlobject': [SKIP], | |
| 272 'runtime-gen/isinitializedintlobjectoftype': [SKIP], | |
| 273 'runtime-gen/markasinitializedintlobjectoftype': [SKIP], | |
| 274 'runtime-gen/stringnormalize': [SKIP], | |
| 275 }], | |
| 276 | |
| 277 ############################################################################## | |
| 278 ['arch == arm64 or arch == android_arm64', { | 251 ['arch == arm64 or arch == android_arm64', { |
| 279 | 252 |
| 280 # arm64 TF timeout. | 253 # arm64 TF timeout. |
| 281 'regress/regress-1257': [PASS, TIMEOUT], | 254 'regress/regress-1257': [PASS, TIMEOUT], |
| 282 | 255 |
| 283 # Requires bigger stack size in the Genesis and if stack size is increased, | 256 # Requires bigger stack size in the Genesis and if stack size is increased, |
| 284 # the test requires too much time to run. However, the problem test covers | 257 # the test requires too much time to run. However, the problem test covers |
| 285 # should be platform-independent. | 258 # should be platform-independent. |
| 286 'regress/regress-1132': [SKIP], | 259 'regress/regress-1132': [SKIP], |
| 287 | 260 |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 'never-optimize': [SKIP], | 541 'never-optimize': [SKIP], |
| 569 'regress/regress-2185-2': [SKIP], | 542 'regress/regress-2185-2': [SKIP], |
| 570 'harmony/object-observe': [SKIP], | 543 'harmony/object-observe': [SKIP], |
| 571 'readonly': [SKIP], | 544 'readonly': [SKIP], |
| 572 'array-feedback': [SKIP], | 545 'array-feedback': [SKIP], |
| 573 | 546 |
| 574 # Deopt every n garbage collections collides with deopt every n times. | 547 # Deopt every n garbage collections collides with deopt every n times. |
| 575 'regress/regress-2653': [SKIP], | 548 'regress/regress-2653': [SKIP], |
| 576 }], # 'deopt_fuzzer == True' | 549 }], # 'deopt_fuzzer == True' |
| 577 ] | 550 ] |
| OLD | NEW |