Changeset 204457 in webkit


Ignore:
Timestamp:
Aug 14, 2016 4:04:50 PM (8 years ago)
Author:
gskachkov@gmail.com
Message:

[2016] Set correct status for test262 after implementation of Object.values&Object.entries
https://bugs.webkit.org/show_bug.cgi?id=160844

Reviewed by Saam Barati.

Patch contains fix statuses of specs in the test262 test collection after implementation of
Object.values and Object.entries functions. Also patch contains small fixes in tests of the
tests for Object.values/entries functions.

  • stress/object-entries.js:

(Object.getOwnPropertyDescriptor):

  • stress/object-values.js:

(Object.getOwnPropertyDescriptor):

  • test262.yaml:
Location:
trunk/JSTests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r204439 r204457  
     12016-08-14  Skachkov Oleksandr  <gskachkov@gmail.com>
     2
     3        [2016] Set correct status for test262 after implementation of Object.values&Object.entries
     4        https://bugs.webkit.org/show_bug.cgi?id=160844
     5
     6        Reviewed by Saam Barati.
     7
     8        Patch contains fix statuses of specs in the test262 test collection after implementation of
     9        Object.values and Object.entries functions. Also patch contains small fixes in tests of the
     10        tests for Object.values/entries functions.
     11
     12        * stress/object-entries.js:
     13        (Object.getOwnPropertyDescriptor):
     14        * stress/object-values.js:
     15        (Object.getOwnPropertyDescriptor):
     16        * test262.yaml:
     17
    1182016-08-12  Saam Barati  <sbarati@apple.com>
    219
  • trunk/JSTests/stress/object-entries.js

    r204419 r204457  
    115115
    116116Array.prototype.push = function () { throw new Error("Array.prototype.push should not be used during invoking of Object.entries.")};
    117 Array.prototype.getOwnPropertyDescriptor = function () { throw new Error("Array.prototype.getOwnPropertyDescriptor should not be used during invoking of Object.entries.")};
     117Object.getOwnPropertyDescriptor = function () { throw new Error("Array.prototype.getOwnPropertyDescriptor should not be used during invoking of Object.entries.")};
    118118
    119119entries = Object.entries({a:'1-2', b:'3-4'});
  • trunk/JSTests/stress/object-values.js

    r204419 r204457  
    105105
    106106Array.prototype.push = function () { throw new Error("Array.prototype.push should not be used during invoking of Object.values.")};
    107 Array.prototype.getOwnPropertyDescriptor = function () { throw new Error("Array.prototype.getOwnPropertyDescriptor should not be used during invoking of Object.entries.")};
     107Object.getOwnPropertyDescriptor = function () { throw new Error("Array.prototype.getOwnPropertyDescriptor should not be used during invoking of Object.values.")};
    108108
    109109values = Object.values({a:'1-2', b:'3-4'});
  • trunk/JSTests/test262.yaml

    r204248 r204457  
    3079930799  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3080030800- path: test262/test/built-ins/Object/entries/exception-during-enumeration.js
    30801   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     30801  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3080230802- path: test262/test/built-ins/Object/entries/exception-during-enumeration.js
    30803   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     30803  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3080430804- path: test262/test/built-ins/Object/entries/exception-not-object-coercible.js
    3080530805  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     
    3080730807  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3080830808- path: test262/test/built-ins/Object/entries/function-length.js
    30809   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], []
     30809  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], []
    3081030810- path: test262/test/built-ins/Object/entries/function-length.js
    30811   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], [:strict]
     30811  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], [:strict]
    3081230812- path: test262/test/built-ins/Object/entries/function-name.js
    30813   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], []
     30813  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], []
    3081430814- path: test262/test/built-ins/Object/entries/function-name.js
    30815   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], [:strict]
     30815  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], [:strict]
    3081630816- path: test262/test/built-ins/Object/entries/function-property-descriptor.js
    30817   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], []
     30817  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], []
    3081830818- path: test262/test/built-ins/Object/entries/function-property-descriptor.js
    30819   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], [:strict]
     30819  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], [:strict]
    3082030820- path: test262/test/built-ins/Object/entries/getter-adding-key.js
    30821   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     30821  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3082230822- path: test262/test/built-ins/Object/entries/getter-adding-key.js
    30823   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     30823  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3082430824- path: test262/test/built-ins/Object/entries/getter-making-future-key-nonenumerable.js
    30825   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     30825  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3082630826- path: test262/test/built-ins/Object/entries/getter-making-future-key-nonenumerable.js
    30827   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     30827  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3082830828- path: test262/test/built-ins/Object/entries/getter-removing-future-key.js
    30829   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     30829  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3083030830- path: test262/test/built-ins/Object/entries/getter-removing-future-key.js
    30831   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     30831  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3083230832- path: test262/test/built-ins/Object/entries/inherited-properties-omitted.js
    30833   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     30833  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3083430834- path: test262/test/built-ins/Object/entries/inherited-properties-omitted.js
    30835   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     30835  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3083630836- path: test262/test/built-ins/Object/entries/observable-operations.js
    30837   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/proxyTrapsHelper.js"], []
     30837  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/proxyTrapsHelper.js"], []
    3083830838- path: test262/test/built-ins/Object/entries/observable-operations.js
    30839   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/proxyTrapsHelper.js"], [:strict]
     30839  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/proxyTrapsHelper.js"], [:strict]
    3084030840- path: test262/test/built-ins/Object/entries/primitive-booleans.js
    30841   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     30841  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3084230842- path: test262/test/built-ins/Object/entries/primitive-booleans.js
    30843   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     30843  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3084430844- path: test262/test/built-ins/Object/entries/primitive-numbers.js
    30845   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     30845  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3084630846- path: test262/test/built-ins/Object/entries/primitive-numbers.js
    30847   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     30847  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3084830848- path: test262/test/built-ins/Object/entries/primitive-strings.js
    30849   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     30849  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3085030850- path: test262/test/built-ins/Object/entries/primitive-strings.js
    30851   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     30851  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3085230852- path: test262/test/built-ins/Object/entries/primitive-symbols.js
    30853   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     30853  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3085430854- path: test262/test/built-ins/Object/entries/primitive-symbols.js
    30855   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     30855  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3085630856- path: test262/test/built-ins/Object/entries/symbols-omitted.js
    30857   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     30857  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3085830858- path: test262/test/built-ins/Object/entries/symbols-omitted.js
    30859   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     30859  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3086030860- path: test262/test/built-ins/Object/entries/tamper-with-global-object.js
    30861   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     30861  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3086230862- path: test262/test/built-ins/Object/entries/tamper-with-global-object.js
    30863   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     30863  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3086430864- path: test262/test/built-ins/Object/entries/tamper-with-object-keys.js
    30865   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     30865  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3086630866- path: test262/test/built-ins/Object/entries/tamper-with-object-keys.js
    30867   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     30867  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3086830868- path: test262/test/built-ins/Object/freeze/15.2.3.9-0-1.js
    3086930869  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     
    3445134451  cmd: runTest262 :normal, "NoException", ["../../../harness/assert.js", "../../../harness/sta.js"], [:strict]
    3445234452- path: test262/test/built-ins/Object/values/exception-during-enumeration.js
    34453   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     34453  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3445434454- path: test262/test/built-ins/Object/values/exception-during-enumeration.js
    34455   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     34455  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3445634456- path: test262/test/built-ins/Object/values/exception-not-object-coercible.js
    3445734457  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     
    3445934459  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3446034460- path: test262/test/built-ins/Object/values/function-length.js
    34461   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], []
     34461  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], []
    3446234462- path: test262/test/built-ins/Object/values/function-length.js
    34463   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], [:strict]
     34463  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], [:strict]
    3446434464- path: test262/test/built-ins/Object/values/function-name.js
    34465   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], []
     34465  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], []
    3446634466- path: test262/test/built-ins/Object/values/function-name.js
    34467   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], [:strict]
     34467  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], [:strict]
    3446834468- path: test262/test/built-ins/Object/values/function-property-descriptor.js
    34469   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], []
     34469  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], []
    3447034470- path: test262/test/built-ins/Object/values/function-property-descriptor.js
    34471   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], [:strict]
     34471  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/propertyHelper.js"], [:strict]
    3447234472- path: test262/test/built-ins/Object/values/getter-adding-key.js
    34473   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     34473  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3447434474- path: test262/test/built-ins/Object/values/getter-adding-key.js
    34475   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     34475  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3447634476- path: test262/test/built-ins/Object/values/getter-making-future-key-nonenumerable.js
    34477   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     34477  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3447834478- path: test262/test/built-ins/Object/values/getter-making-future-key-nonenumerable.js
    34479   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     34479  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3448034480- path: test262/test/built-ins/Object/values/getter-removing-future-key.js
    34481   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     34481  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3448234482- path: test262/test/built-ins/Object/values/getter-removing-future-key.js
    34483   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     34483  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3448434484- path: test262/test/built-ins/Object/values/inherited-properties-omitted.js
    34485   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     34485  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3448634486- path: test262/test/built-ins/Object/values/inherited-properties-omitted.js
    34487   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     34487  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3448834488- path: test262/test/built-ins/Object/values/observable-operations.js
    34489   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/proxyTrapsHelper.js"], []
     34489  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/proxyTrapsHelper.js"], []
    3449034490- path: test262/test/built-ins/Object/values/observable-operations.js
    34491   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/proxyTrapsHelper.js"], [:strict]
     34491  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/proxyTrapsHelper.js"], [:strict]
    3449234492- path: test262/test/built-ins/Object/values/primitive-booleans.js
    34493   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     34493  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3449434494- path: test262/test/built-ins/Object/values/primitive-booleans.js
    34495   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     34495  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3449634496- path: test262/test/built-ins/Object/values/primitive-numbers.js
    34497   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     34497  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3449834498- path: test262/test/built-ins/Object/values/primitive-numbers.js
    34499   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     34499  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3450034500- path: test262/test/built-ins/Object/values/primitive-strings.js
    34501   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     34501  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3450234502- path: test262/test/built-ins/Object/values/primitive-strings.js
    34503   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     34503  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3450434504- path: test262/test/built-ins/Object/values/primitive-symbols.js
    34505   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     34505  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3450634506- path: test262/test/built-ins/Object/values/primitive-symbols.js
    34507   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     34507  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3450834508- path: test262/test/built-ins/Object/values/symbols-omitted.js
    34509   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     34509  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3451034510- path: test262/test/built-ins/Object/values/symbols-omitted.js
    34511   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     34511  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3451234512- path: test262/test/built-ins/Object/values/tamper-with-global-object.js
    34513   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     34513  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3451434514- path: test262/test/built-ins/Object/values/tamper-with-global-object.js
    34515   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     34515  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3451634516- path: test262/test/built-ins/Object/values/tamper-with-object-keys.js
    34517   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
     34517  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []
    3451834518- path: test262/test/built-ins/Object/values/tamper-with-object-keys.js
    34519   cmd: runTest262 :fail, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
     34519  cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]
    3452034520- path: test262/test/built-ins/Promise/S25.4.3.1_A1.1_T1.js
    3452134521  cmd: runTest262 :normal, "NoException", ["../../../harness/assert.js", "../../../harness/sta.js"], []
Note: See TracChangeset for help on using the changeset viewer.