| OLD | NEW |
| 1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 }; | 263 }; |
| 264 | 264 |
| 265 var testDriver = new Driver(); | 265 var testDriver = new Driver(); |
| 266 testDriver.execute(); | 266 testDriver.execute(); |
| 267 | 267 |
| 268 var counted = 0; | 268 var counted = 0; |
| 269 for (var c in testDriver.counters) { | 269 for (var c in testDriver.counters) { |
| 270 counted++; | 270 counted++; |
| 271 } | 271 } |
| 272 | 272 |
| 273 var flatProfile = testDriver.profile.getFlatProfile(); | 273 var flatProfile = |
| 274 testDriver.profile.getFlatProfile().getRoot().exportChildren(); |
| 274 assertEquals(counted, flatProfile.length, 'counted vs. flatProfile'); | 275 assertEquals(counted, flatProfile.length, 'counted vs. flatProfile'); |
| 275 for (var i = 0; i < flatProfile.length; ++i) { | 276 for (var i = 0; i < flatProfile.length; ++i) { |
| 276 var rec = flatProfile[i]; | 277 var rec = flatProfile[i]; |
| 277 assertTrue(rec.label in testDriver.counters, 'uncounted: ' + rec.label); | 278 assertTrue(rec.label in testDriver.counters, 'uncounted: ' + rec.label); |
| 278 var reference = testDriver.counters[rec.label]; | 279 var reference = testDriver.counters[rec.label]; |
| 279 assertEquals(reference.self, rec.selfWeight, 'self of ' + rec.label); | 280 assertEquals(reference.self, rec.selfWeight, 'self of ' + rec.label); |
| 280 assertEquals(reference.total, rec.totalWeight, 'total of ' + rec.label); | 281 assertEquals(reference.total, rec.totalWeight, 'total of ' + rec.label); |
| 281 } | 282 } |
| 282 | 283 |
| 283 })(); | 284 })(); |
| OLD | NEW |