Skip to content

Commit 0aba039

Browse files
committed
Speed up RWC IO playback by removing unfound files from resolution candidates
1 parent f2546c1 commit 0aba039

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/harness/loggedIO.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,8 @@ module Playback {
122122
};
123123
wrapper.startReplayFromData = log => {
124124
replayLog = log;
125+
// Remove non-found files from the log (shouldn't really need them, but we still record them for diganostic purposes)
126+
replayLog.filesRead = replayLog.filesRead.filter(f => f.result.contents !== undefined);
125127
};
126128

127129
wrapper.endReplay = () => {

0 commit comments

Comments
 (0)