diff options
Diffstat (limited to 'js/src/jit-test/tests/ion/bug724944.js')
-rw-r--r-- | js/src/jit-test/tests/ion/bug724944.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/bug724944.js b/js/src/jit-test/tests/ion/bug724944.js new file mode 100644 index 0000000000..0b73ca7a77 --- /dev/null +++ b/js/src/jit-test/tests/ion/bug724944.js @@ -0,0 +1,18 @@ +function TestCase(n, d, e, a) { + return function writeHeaderToLog( string ) {}; +} +var SECTION = "15.1.2.5-2"; +for ( var CHARCODE = 0; CHARCODE < 256; CHARCODE += 16 ) { + new TestCase( SECTION, unescape( "%" + (ToHexString(CHARCODE)).substring(0,1) ) ); +} +function ToHexString( n ) { + var hex = new Array(); + for ( var mag = 1; Math.pow(16,mag) <= n ; mag++ ) { } + for ( index = 0, mag -= 1; mag > 0; index++, mag-- ) { } + var string =""; + switch ( hex[index] ) { + case 10: + string += "A"; + } + return string; +} |