Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c61af66c
Commit
c61af66c
authored
May 04, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
May 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Skip failing tests on old jscript versions.
parent
cc463d0b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
api.js
dlls/jscript/tests/api.js
+8
-6
No files found.
dlls/jscript/tests/api.js
View file @
c61af66c
...
...
@@ -1016,15 +1016,17 @@ tmp = arr.splice(-bigInt);
ok
(
tmp
.
toString
()
==
""
,
"arr.splice(-bigInt) returned "
+
tmp
.
toString
());
ok
(
arr
.
toString
()
==
"1,2,3,4,5"
,
"arr.splice(-bigInt) is "
+
arr
.
toString
());
arr
=
[
1
,
2
,
3
,
4
,
5
];
tmp
=
arr
.
splice
(
2
,
bigInt
);
ok
(
tmp
.
toString
()
==
"3,4,5"
,
"arr.splice(2, bigInt) returned "
+
tmp
.
toString
());
ok
(
arr
.
toString
()
==
"1,2"
,
"arr.splice(2, bigInt) is "
+
arr
.
toString
());
if
(
invokeVersion
>=
2
)
{
arr
=
[
1
,
2
,
3
,
4
,
5
];
tmp
=
arr
.
splice
(
2
,
bigInt
);
ok
(
tmp
.
toString
()
==
"3,4,5"
,
"arr.splice(2, bigInt) returned "
+
tmp
.
toString
());
ok
(
arr
.
toString
()
==
"1,2"
,
"arr.splice(2, bigInt) is "
+
arr
.
toString
());
}
arr
=
[
1
,
2
,
3
,
4
,
5
];
tmp
=
arr
.
splice
(
2
,
-
bigInt
);
ok
(
tmp
.
toString
()
==
""
,
"arr.splice(2, bigInt) returned "
+
tmp
.
toString
());
ok
(
arr
.
toString
()
==
"1,2,3,4,5"
,
"arr.splice(2, bigInt) is "
+
arr
.
toString
());
ok
(
tmp
.
toString
()
==
""
,
"arr.splice(2,
-
bigInt) returned "
+
tmp
.
toString
());
ok
(
arr
.
toString
()
==
"1,2,3,4,5"
,
"arr.splice(2,
-
bigInt) is "
+
arr
.
toString
());
obj
=
new
Object
();
obj
.
length
=
3
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment