js/src/tests/js1_5/extensions/regress-336410-2.js

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

     1 // |reftest| skip-if(!xulRuntime.shell&&((isDebugBuild&&xulRuntime.OS=="Linux")||Android||xulRuntime.XPCOMABI.match(/x86_64/)||xulRuntime.OS=="WINNT")) slow -- can fail silently due to out of memory, bug 621348 - timeouts on slow debug Linux
     2 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     3 /* This Source Code Form is subject to the terms of the Mozilla Public
     4  * License, v. 2.0. If a copy of the MPL was not distributed with this
     5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     7 //-----------------------------------------------------------------------------
     8 var BUGNUMBER = 336410;
     9 var summary = 'Integer overflow in array_toSource';
    10 var actual = 'No Crash';
    11 var expect = /(No Crash|InternalError: allocation size overflow|out of memory)/;
    13 printBugNumber(BUGNUMBER);
    14 printStatus (summary);
    16 expectExitCode(0);
    17 expectExitCode(5);
    19 function createString(n)
    20 {
    21   var l = n*1024*1024;
    22   var r = 'r';
    24   while (r.length < l)
    25   {
    26     r = r + r;
    27   }
    28   return r;
    29 }
    31 try
    32 {
    33   var n = 128;
    34   printStatus('Creating ' + n + 'M length string');
    35   var r = createString(n);
    36   printStatus('Done. length = ' + r.length);
    37   printStatus('Creating array');
    38   var o=[r, r, r, r, r, r, r, r, r];
    39   printStatus('object.toSource()');
    40   var rr = o.toSource();
    41   printStatus('Done.');
    42 }
    43 catch(ex)
    44 {
    45   actual = ex + '';
    46   print(actual);
    47 }
    49 reportMatch(expect, actual, summary);

mercurial