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