CopyOnAccessArray_bugs.baseline 761 B

1234567891011121314151617181920212223242526272829
  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): OS3713376: Accessing COA through proxy
  28. PASSED
  29. Summary of tests: total executed: 10; passed: 10; failed: 0