Revision edf200a50b7f5857a6230239917024bca6748060 authored by Brad King on 13 March 2013, 17:34:06 UTC, committed by CMake Topic Stage on 13 March 2013, 17:34:06 UTC
1823ab4 ExternalData: Preserve escaped semicolons during argument expansion

2 parent s 0707e0d + 1823ab4
Raw File
DocTest.cxx
#include <fstream>
#include <iostream>
#include <stdio.h>

int main ()
{
  int result = 0;

  // parse the dart test file
  std::ifstream fin("UndefinedProperties.txt");
  if(!fin)
    {
    fprintf(stderr,"failed to find undefined properties file");
    return 1;
    }

  char buffer[1024];
  while ( fin )
    {
    buffer[0] = 0;
    fin.getline(buffer, 1023);
    buffer[1023] = 0;
    std::string line = buffer;
    if(line.size() && line.find("with scope VARIABLE") == std::string::npos)
      {
      fprintf(stderr, "%s\n", line.c_str());
      result = 1;
      }
    }
  fin.close();

  return result;
}
back to top