(fileName)
| 40 | } |
| 41 | |
| 42 | processLogFileInTest(fileName) { |
| 43 | // Hack file name to avoid dealing with platform specifics. |
| 44 | this.lastLogFileName_ = 'v8.log'; |
| 45 | const contents = d8.file.read(fileName); |
| 46 | this.processLogChunk(contents); |
| 47 | } |
| 48 | |
| 49 | processSharedLibrary(name, startAddr, endAddr, aslrSlide) { |
| 50 | const self = this; |
no test coverage detected