mirror of https://github.com/tc39/test262.git
24 lines
618 B
JavaScript
24 lines
618 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
info: If R < 2 or R > 36, then return NaN
|
|
es5id: 15.1.2.2_A4.2_T3
|
|
description: Complex test
|
|
---*/
|
|
|
|
//CHECK#
|
|
var pow = 2;
|
|
for (var i = 1; i < 32; i++) {
|
|
if (pow > 36) {
|
|
var res = true;
|
|
if (isNaN(parseInt(1, pow)) !== true) {
|
|
$ERROR('#1.' + i + ': If R < 2 or R > 36, then return NaN');
|
|
}
|
|
if (isNaN(parseInt(1, -pow)) !== true) {
|
|
$ERROR('#2.' + i + ': If R < 2 or R > 36, then return NaN');
|
|
}
|
|
}
|
|
pow = pow * 2;
|
|
}
|