| 124 | } |
| 125 | |
| 126 | bool FuzzApp::QueueFile(const char* data, size_t len) |
| 127 | { |
| 128 | bool worked = true; |
| 129 | void* bfParser = BfSystem_CreateParser(mSystem, (mCELibProject != NULL) ? mCELibProject : mProject); |
| 130 | BfParser_SetSource(bfParser, data, len, "Fuzz.bf"); |
| 131 | //bfParser.SetCharIdData(charIdData); |
| 132 | worked &= BfParser_Parse(bfParser, mPassInstance, false); |
| 133 | worked &= BfParser_Reduce(bfParser, mPassInstance); |
| 134 | worked &= BfParser_BuildDefs(bfParser, mPassInstance, NULL, false); |
| 135 | return worked; |
| 136 | } |
| 137 | |
| 138 | bool FuzzApp::QueuePath(const StringImpl& path) |
| 139 | { |
no test coverage detected