Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:Output

77       cl::desc("Append the exit code to the output so it gets diff'd too"),
112 OutputPrefix("output-prefix", cl::init("bugpoint"),
289 /// executeProgram - This method runs "Program", capturing the output of the
326 if (OutputFile.empty()) OutputFile = OutputPrefix + "-execution-output";
328 // Check to see if this is a valid output filename...
367 // Return the filename we captured the output to.
371 /// executeProgramSafely - Used to create reference output with the "safe"
372 /// backend, if reference output is not provided.
405 /// createReferenceFile - calls compileProgram and then records the output
427 outs() << "\nReference output is: " << ReferenceOutputFile << "\n\n";
432 /// output against the file specified by ReferenceOutputFile. If the output
441 // Execute the program, generating an output file...
442 sys::Path Output(executeProgram(Program, "", BitcodeFile, SharedObject, 0,
450 sys::Path(Output.str()),
453 errs() << "While diffing output: " << Error << '\n';
459 // Remove the generated output if there are no differences.
460 Output.eraseFromDisk();