HomeSort by relevance Sort by last modified time
    Searched full:errorfile (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/test/BlocksRuntime/
fail.c 36 // find and strip off -e "errorfile"
37 char *errorfile = NULL; local
41 errorfile = argv[++i];
80 if (errorfile) {
81 //printf("ignoring error file: %s\n", errorfile);
84 bool gotErrorFile = readfile(desired, errorfile);
87 printf("didn't read errorfile %s, it should have something from\n*****\n%s\n*****\nin it.\n",
88 errorfile, got);
94 printf("didn't find contents of %s in %s\n", errorfile, buffer);
99 printf("errorfile %s and output %s inconsistent\n", errorfile, buffer)
    [all...]
  /external/llvm/tools/bugpoint/
ToolRunner.cpp 119 std::ifstream ErrorFile(StdOutFileName.c_str());
120 if (ErrorFile) {
121 std::copy(std::istreambuf_iterator<char>(ErrorFile),
124 ErrorFile.close();
156 std::ifstream ErrorFile(ErrorFilename.c_str());
157 if (ErrorFile) {
158 std::copy(std::istreambuf_iterator<char>(ErrorFile),
161 ErrorFile.close();
    [all...]

Completed in 65 milliseconds