blob: dd54e28fe3271974f1b80094cae0a1db975e77fb [file] [log] [blame]
// |reftest| skip-if(Android)
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
//-----------------------------------------------------------------------------
var BUGNUMBER = 452498;
var summary = 'TM: upvar2 regression tests';
var actual = '';
var expect = '';
//-----------------------------------------------------------------------------
test();
//-----------------------------------------------------------------------------
function test()
{
enterFunc ('test');
printBugNumber(BUGNUMBER);
printStatus (summary);
// ------- Comment #135 From Gary Kwong [:nth10sd]
if (typeof timeout == 'function')
{
expectExitCode(6);
timeout(3);
eval("do ([]); while(y for each (x in []))");
}
reportCompare(expect, actual, summary);
exitFunc ('test');
}