js/src/tests/js1_5/Regress/regress-102725.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/tests/js1_5/Regress/regress-102725.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,64 @@
     1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.8 +
     1.9 +/*
    1.10 + * Date: 09 October 2001
    1.11 + *
    1.12 + * SUMMARY: Regression test for Bugzilla bug 102725
    1.13 + * See http://bugzilla.mozilla.org/show_bug.cgi?id=102725
    1.14 + * "gcc -O2 problems converting numbers to strings"
    1.15 + *
    1.16 + */
    1.17 +//-----------------------------------------------------------------------------
    1.18 +var UBound = 0;
    1.19 +var BUGNUMBER = 102725;
    1.20 +var summary = 'Testing converting numbers to strings';
    1.21 +var status = '';
    1.22 +var statusitems = [];
    1.23 +var actual = '';
    1.24 +var actualvalues = [];
    1.25 +var expect= '';
    1.26 +var expectedvalues = [];
    1.27 +
    1.28 +
    1.29 +/*
    1.30 + * Successive calls to foo.toString() were producing different answers!
    1.31 + */
    1.32 +status = inSection(1);
    1.33 +foo = (new Date()).getTime();
    1.34 +actual = foo.toString();
    1.35 +expect = foo.toString();
    1.36 +addThis();
    1.37 +
    1.38 +
    1.39 +
    1.40 +//-----------------------------------------------------------------------------
    1.41 +test();
    1.42 +//-----------------------------------------------------------------------------
    1.43 +
    1.44 +
    1.45 +
    1.46 +function addThis()
    1.47 +{
    1.48 +  statusitems[UBound] = status;
    1.49 +  actualvalues[UBound] = actual;
    1.50 +  expectedvalues[UBound] = expect;
    1.51 +  UBound++;
    1.52 +}
    1.53 +
    1.54 +
    1.55 +function test()
    1.56 +{
    1.57 +  enterFunc ('test');
    1.58 +  printBugNumber(BUGNUMBER);
    1.59 +  printStatus (summary);
    1.60 +
    1.61 +  for (var i=0; i<UBound; i++)
    1.62 +  {
    1.63 +    reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
    1.64 +  }
    1.65 +
    1.66 +  exitFunc ('test');
    1.67 +}

mercurial