Trivial change: more efficiency in detecting Rhino shell.

This commit is contained in:
pschwartau%netscape.com 2002-09-16 18:57:22 +00:00
Родитель d91fd3218f
Коммит 40023632cf
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -86,7 +86,9 @@ printStatus(summary);
* "out of memory" is not a catchable error: it cannot be
* trapped with try...catch.
*/
if (inRhino())
var IN_RHINO = inRhino();
if (IN_RHINO)
expectExitCode(1);
else
expectExitCode(3);
@ -96,7 +98,7 @@ else
* Rhino can't seem to handle the largest array: it hangs...
* So we'll skip this case in Rhino -
*/
if (!(inRhino()))
if (!IN_RHINO)
{
var a1=Array(0xFFFFFFFF);
a1.sort();