Skip to content

Commit 00bb1a7

Browse files
RaisinTenV8 LUCI CQ
authored and
V8 LUCI CQ
committed
[date] Fix Date#getMinutes() test failures
After building V8 using Clang (./out/x64.release/v8_build_config.json says that "is_clang" is true), I could reproduce the referenced bug report locally. Replacing the getMinutes() calls with getUTCMinutes() calls fixed the test failure. Signed-off-by: Darshan Sen <[email protected]> Bug: v8:11200 Change-Id: Ia36be481f2c8728380d550ead856ef8e51b1069c Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3093362 Reviewed-by: Toon Verwaest <[email protected]> Commit-Queue: Toon Verwaest <[email protected]> Cr-Commit-Position: refs/heads/main@{#76367}
1 parent dfef303 commit 00bb1a7

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ Daniel Andersson <[email protected]>
8686
Daniel Bevenius <[email protected]>
8787
Daniel Dromboski <[email protected]>
8888
Daniel James <[email protected]>
89+
Darshan Sen <[email protected]>
8990
David Carlier <[email protected]>
9091
David Manouchehri <[email protected]>
9192
Deepak Mohan <[email protected]>

test/mjsunit/regress/regress-crbug-422858.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33
// found in the LICENSE file.
44

55
var date = new Date("2016/01/02 10:00 GMT-8")
6-
assertEquals(0, date.getMinutes());
6+
assertEquals(0, date.getUTCMinutes());
77
assertEquals(18, date.getUTCHours());
88

99
date = new Date("2016/01/02 10:00 GMT-12")
10-
assertEquals(0, date.getMinutes());
10+
assertEquals(0, date.getUTCMinutes());
1111
assertEquals(22, date.getUTCHours());
1212

1313
date = new Date("2016/01/02 10:00 GMT-123")
14-
assertEquals(23, date.getMinutes());
14+
assertEquals(23, date.getUTCMinutes());
1515
assertEquals(11, date.getUTCHours());
1616

1717
date = new Date("2016/01/02 10:00 GMT-0856")
18-
assertEquals(56, date.getMinutes());
18+
assertEquals(56, date.getUTCMinutes());
1919
assertEquals(18, date.getUTCHours());
2020

2121
date = new Date("2016/01/02 10:00 GMT-08000")
22-
assertEquals(NaN, date.getMinutes());
22+
assertEquals(NaN, date.getUTCMinutes());
2323
assertEquals(NaN, date.getUTCHours());

0 commit comments

Comments
 (0)