summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug687125.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/jit-test/tests/auto-regress/bug687125.js
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--js/src/jit-test/tests/auto-regress/bug687125.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/auto-regress/bug687125.js b/js/src/jit-test/tests/auto-regress/bug687125.js
new file mode 100644
index 0000000000..c4811e926d
--- /dev/null
+++ b/js/src/jit-test/tests/auto-regress/bug687125.js
@@ -0,0 +1,25 @@
+// Binary: cache/js-dbg-64-f3f5d8a8a473-linux
+// Flags: -m -n
+//
+
+function MakeDay( year, month, date ) {
+ date = ToInteger(date );
+ var t = ( year < 1970 ) ? 1 : 0;
+ return ( (Math.floor(t/86400000)) + date - 1 );
+}
+function MakeDate( day, time ) {
+ if ( day == Number.POSITIVE_INFINITY || day == Number.NEGATIVE_INFINITY ) { }
+}
+function ToInteger( t ) {
+ var sign = ( t < 0 ) ? -1 : 1;
+ return ( sign * Math.floor( Math.abs( t ) ) );
+}
+var UTCDate = MyDateFromTime( Number("946684800000") );
+function MyDate() {
+ this.date = 0;
+}
+function MyDateFromTime( t ) {
+ var d = new MyDate();
+ d.value = ToInteger( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) );
+ var i = 0; while (Uint32Array && i < 10000) { ++i; if (0 == 100000) return; }
+}