Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
michael@0 | 1 | // |reftest| skip-if(Android) |
michael@0 | 2 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 3 | /* |
michael@0 | 4 | * Any copyright is dedicated to the Public Domain. |
michael@0 | 5 | * http://creativecommons.org/licenses/publicdomain/ |
michael@0 | 6 | * Contributor: Jason Orendorff |
michael@0 | 7 | */ |
michael@0 | 8 | |
michael@0 | 9 | //----------------------------------------------------------------------------- |
michael@0 | 10 | var BUGNUMBER = 452498; |
michael@0 | 11 | var summary = 'TM: upvar2 regression tests'; |
michael@0 | 12 | var actual = ''; |
michael@0 | 13 | var expect = ''; |
michael@0 | 14 | |
michael@0 | 15 | |
michael@0 | 16 | //----------------------------------------------------------------------------- |
michael@0 | 17 | test(); |
michael@0 | 18 | //----------------------------------------------------------------------------- |
michael@0 | 19 | |
michael@0 | 20 | function test() |
michael@0 | 21 | { |
michael@0 | 22 | enterFunc ('test'); |
michael@0 | 23 | printBugNumber(BUGNUMBER); |
michael@0 | 24 | printStatus (summary); |
michael@0 | 25 | |
michael@0 | 26 | // ------- Comment #52 From Jason Orendorff |
michael@0 | 27 | |
michael@0 | 28 | |
michael@0 | 29 | // Assertion failure: pn_arity == PN_FUNC || pn_arity == PN_NAME, at ../jsparse.h:444 |
michael@0 | 30 | // Here the function node has been morphed into a JSOP_TRUE node, but we're in |
michael@0 | 31 | // FindFunArgs poking it anyway. |
michael@0 | 32 | if (typeof timeout == 'function') |
michael@0 | 33 | { |
michael@0 | 34 | expectExitCode(6); |
michael@0 | 35 | timeout(3); |
michael@0 | 36 | while(function(){}); |
michael@0 | 37 | } |
michael@0 | 38 | |
michael@0 | 39 | reportCompare(expect, actual, summary); |
michael@0 | 40 | |
michael@0 | 41 | exitFunc ('test'); |
michael@0 | 42 | } |