Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Side by Side Diff: test/mjsunit/parse-int-float.js

Issue 1579004: Reverting r4329 due to failure in webkit tests. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/runtime.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 24 matching lines...) Expand all
35 assertEquals(-63, parseInt(' -077')); 35 assertEquals(-63, parseInt(' -077'));
36 36
37 assertEquals(3, parseInt('11', 2)); 37 assertEquals(3, parseInt('11', 2));
38 assertEquals(4, parseInt('11', 3)); 38 assertEquals(4, parseInt('11', 3));
39 assertEquals(4, parseInt('11', 3.8)); 39 assertEquals(4, parseInt('11', 3.8));
40 40
41 assertEquals(0x12, parseInt('0x12')); 41 assertEquals(0x12, parseInt('0x12'));
42 assertEquals(0x12, parseInt('0x12', 16)); 42 assertEquals(0x12, parseInt('0x12', 16));
43 assertEquals(0x12, parseInt('0x12', 16.1)); 43 assertEquals(0x12, parseInt('0x12', 16.1));
44 assertEquals(0x12, parseInt('0x12', NaN)); 44 assertEquals(0x12, parseInt('0x12', NaN));
45 assertTrue(isNaN(parseInt('0x '))); 45
46 assertTrue(isNaN(parseInt('0x')));
47 assertTrue(isNaN(parseInt('0x ', 16)));
48 assertTrue(isNaN(parseInt('0x', 16)));
49 assertEquals(12, parseInt('12aaa')); 46 assertEquals(12, parseInt('12aaa'));
50 47
51 assertEquals(0.1, parseFloat('0.1')); 48 assertEquals(0.1, parseFloat('0.1'));
52 assertEquals(0.1, parseFloat('0.1aaa')); 49 assertEquals(0.1, parseFloat('0.1aaa'));
53 assertEquals(0, parseFloat('0aaa')); 50 assertEquals(0, parseFloat('0aaa'));
54 assertEquals(0, parseFloat('0x12')); 51 assertEquals(0, parseFloat('0x12'));
55 assertEquals(77, parseFloat('077')); 52 assertEquals(77, parseFloat('077'));
56 53
57 54
58 var i; 55 var i;
(...skipping 21 matching lines...) Expand all
80 77
81 assertTrue(isNaN(parseInt(0/0))); 78 assertTrue(isNaN(parseInt(0/0)));
82 assertTrue(isNaN(parseInt(1/0)), "parseInt Infinity"); 79 assertTrue(isNaN(parseInt(1/0)), "parseInt Infinity");
83 assertTrue(isNaN(parseInt(-1/0)), "parseInt -Infinity"); 80 assertTrue(isNaN(parseInt(-1/0)), "parseInt -Infinity");
84 81
85 assertTrue(isNaN(parseFloat(0/0))); 82 assertTrue(isNaN(parseFloat(0/0)));
86 assertEquals(Infinity, parseFloat(1/0), "parseFloat Infinity"); 83 assertEquals(Infinity, parseFloat(1/0), "parseFloat Infinity");
87 assertEquals(-Infinity, parseFloat(-1/0), "parseFloat -Infinity"); 84 assertEquals(-Infinity, parseFloat(-1/0), "parseFloat -Infinity");
88 85
89 86
OLDNEW
« no previous file with comments | « src/runtime.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698