CopyOnAccessArray_bugs.baseline 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. *** Running test #1 (0): Calling Array.prototype.slice()
  2. PASSED
  3. *** Running test #2 (1): Calling Array.prototype.push()
  4. PASSED
  5. *** Running test #3 (2): Calling Array.isArray()
  6. PASSED
  7. *** Running test #4 (3): Calling Array.prototype.unshift()
  8. PASSED
  9. *** Running test #5 (4): Calling Array.prototype.shift()
  10. PASSED
  11. *** Running test #6 (5): Calling Array.prototype.entries()
  12. 0,1
  13. 1,2
  14. 2,3
  15. 3,4
  16. PASSED
  17. *** Running test #7 (6): Calling Array.prototype.keys()
  18. 0
  19. 1
  20. 2
  21. 3
  22. PASSED
  23. *** Running test #8 (7): Calling Array.prototype.reverse()
  24. PASSED
  25. *** Running test #9 (8): Calling Object.prototype.toString()
  26. PASSED
  27. *** Running test #10 (9): Calling Object.prototype.hasOwnProperty()
  28. PASSED
  29. *** Running test #11 (10): OS3713376: Accessing COA through proxy
  30. PASSED
  31. *** Running test #12 (11): Reflect.set
  32. PASSED
  33. *** Running test #13 (12): Reflect.defineProperty
  34. PASSED
  35. *** Running test #14 (13): Reflect.set
  36. PASSED
  37. *** Running test #15 (14): Array.of
  38. PASSED
  39. *** Running test #16 (15): CopyOnAccess in ForInEnumerator - native ints
  40. PASSED
  41. *** Running test #17 (16): CopyOnAccess in ForInEnumerator - native floats
  42. PASSED
  43. *** Running test #18 (17): CopyOnAccess in for..of - native ints
  44. PASSED
  45. Summary of tests: total executed: 18; passed: 18; failed: 0