OLD | NEW |
---|---|
1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
345 # https://bugs.chromium.org/p/v8/issues/detail?id=5070 | 345 # https://bugs.chromium.org/p/v8/issues/detail?id=5070 |
346 'annexB/built-ins/Object/prototype/__defineGetter__/define-non-configurable': [FAIL], | 346 'annexB/built-ins/Object/prototype/__defineGetter__/define-non-configurable': [FAIL], |
347 'annexB/built-ins/Object/prototype/__defineGetter__/define-non-extensible': [F AIL], | 347 'annexB/built-ins/Object/prototype/__defineGetter__/define-non-extensible': [F AIL], |
348 'annexB/built-ins/Object/prototype/__defineGetter__/this-non-obj': [FAIL], | 348 'annexB/built-ins/Object/prototype/__defineGetter__/this-non-obj': [FAIL], |
349 'annexB/built-ins/Object/prototype/__defineSetter__/define-non-configurable': [FAIL], | 349 'annexB/built-ins/Object/prototype/__defineSetter__/define-non-configurable': [FAIL], |
350 'annexB/built-ins/Object/prototype/__defineSetter__/define-non-extensible': [F AIL], | 350 'annexB/built-ins/Object/prototype/__defineSetter__/define-non-extensible': [F AIL], |
351 'annexB/built-ins/Object/prototype/__defineSetter__/this-non-obj': [FAIL], | 351 'annexB/built-ins/Object/prototype/__defineSetter__/this-non-obj': [FAIL], |
352 'annexB/built-ins/Object/prototype/__lookupGetter__/this-non-obj': [FAIL], | 352 'annexB/built-ins/Object/prototype/__lookupGetter__/this-non-obj': [FAIL], |
353 'annexB/built-ins/Object/prototype/__lookupSetter__/this-non-obj': [FAIL], | 353 'annexB/built-ins/Object/prototype/__lookupSetter__/this-non-obj': [FAIL], |
354 | 354 |
355 # https://bugs.chromium.org/p/v8/issues/detail?id=5121 | |
356 'language/expressions/assignment/destructuring/obj-prop-__proto__dup': [FAIL], | |
adamk
2016/08/18 20:35:22
Please add a test-parsing.cc test as well to make
gsathya
2016/08/19 20:11:18
Added. Let me know if there if there are any that
| |
357 | |
358 # https://bugs.chromium.org/p/v8/issues/detail?id=4973 | 355 # https://bugs.chromium.org/p/v8/issues/detail?id=4973 |
359 'language/literals/numeric/non-octal-decimal-integer-strict': [FAIL], | 356 'language/literals/numeric/non-octal-decimal-integer-strict': [FAIL], |
360 | 357 |
361 # https://bugs.chromium.org/p/v8/issues/detail?id=5130 | 358 # https://bugs.chromium.org/p/v8/issues/detail?id=5130 |
362 'annexB/built-ins/Object/prototype/__lookupGetter__/lookup-own-data': [FAIL], | 359 'annexB/built-ins/Object/prototype/__lookupGetter__/lookup-own-data': [FAIL], |
363 'annexB/built-ins/Object/prototype/__lookupGetter__/lookup-own-get-err': [FAIL ], | 360 'annexB/built-ins/Object/prototype/__lookupGetter__/lookup-own-get-err': [FAIL ], |
364 'annexB/built-ins/Object/prototype/__lookupGetter__/lookup-own-proto-err': [FA IL], | 361 'annexB/built-ins/Object/prototype/__lookupGetter__/lookup-own-proto-err': [FA IL], |
365 'annexB/built-ins/Object/prototype/__lookupGetter__/lookup-proto-data': [FAIL] , | 362 'annexB/built-ins/Object/prototype/__lookupGetter__/lookup-proto-data': [FAIL] , |
366 'annexB/built-ins/Object/prototype/__lookupGetter__/lookup-proto-get-err': [FA IL], | 363 'annexB/built-ins/Object/prototype/__lookupGetter__/lookup-proto-get-err': [FA IL], |
367 'annexB/built-ins/Object/prototype/__lookupGetter__/lookup-proto-proto-err': [ FAIL], | 364 'annexB/built-ins/Object/prototype/__lookupGetter__/lookup-proto-proto-err': [ FAIL], |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
578 }], # asan == True | 575 }], # asan == True |
579 | 576 |
580 ['asan == True or msan == True or tsan == True', { | 577 ['asan == True or msan == True or tsan == True', { |
581 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 | 578 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 |
582 # The failed allocation causes an asan/msan/tsan error | 579 # The failed allocation causes an asan/msan/tsan error |
583 'built-ins/ArrayBuffer/allocation-limit': [SKIP], | 580 'built-ins/ArrayBuffer/allocation-limit': [SKIP], |
584 'built-ins/ArrayBuffer/length-is-too-large-throws': [SKIP], | 581 'built-ins/ArrayBuffer/length-is-too-large-throws': [SKIP], |
585 }], # asan == True or msan == True or tsan == True | 582 }], # asan == True or msan == True or tsan == True |
586 | 583 |
587 ] | 584 ] |
OLD | NEW |