CopyOnAccessArray_bugs.baseline 839 B

12345678910111213141516171819202122232425262728293031
  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. Summary of tests: total executed: 11; passed: 11; failed: 0