summaryrefslogtreecommitdiffstats
path: root/Source/cmEnableTestingCommand.cxx
blob: fe113c6912c060978995891d9702c05622158a29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*=========================================================================

  Program:   CMake - Cross-Platform Makefile Generator
  Module:    $RCSfile$
  Language:  C++
  Date:      $Date$
  Version:   $Revision$

  Copyright (c) 2002 Kitware, Inc., Insight Consortium.  All rights reserved.
  See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.

     This software is distributed WITHOUT ANY WARRANTY; without even 
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
     PURPOSE.  See the above copyright notices for more information.

=========================================================================*/
#include "cmEnableTestingCommand.h"
#include "cmLocalGenerator.h"

// we do this in the final pass so that we now the subdirs have all 
// been defined
bool cmEnableTestingCommand::InitialPass(std::vector<std::string> const&)
{
  m_Makefile->AddDefinition("CMAKE_TESTING_ENABLED","1");
  return true;
}

void cmEnableTestingCommand::FinalPass()
{
  // initialize the DartTestfile files for the tree
  this->CreateDartTestfileForMakefile(m_Makefile);
}

void cmEnableTestingCommand::CreateDartTestfileForMakefile(cmMakefile *mf)
{
  // Create a full path filename for output Testfile
  std::string fname;
  fname = mf->GetStartOutputDirectory();
  fname += "/";
  if ( m_Makefile->IsSet("DART_ROOT") )
    {
    fname += "DartTestfile.txt";
    }
  else
    {
    fname += "CTestTestfile.cmake";
    }
  
  cmSystemTools::MakeDirectory(mf->GetStartOutputDirectory());
  
  // Open the output Testfile
  std::ofstream fout(fname.c_str());
  if (!fout)
    {
    cmSystemTools::Error("Error Writing ", fname.c_str());
    cmSystemTools::ReportLastSystemError("");
    return;
    }
  
  fout << "# CMake generated Testfile for " << std::endl
       << "#\tSource directory: "
       << mf->GetStartDirectory()
       << std::endl
       << "#\tBuild directory: " << mf->GetStartOutputDirectory()
       << std::endl
       << "# " << std::endl
       << "# This file replicates the SUBDIRS() and ADD_TEST() commands from the source"
       << std::endl
       << "# tree CMakeLists.txt file, skipping any SUBDIRS() or ADD_TEST() commands"
       << std::endl
       << "# that are excluded by CMake control structures, i.e. IF() commands."
       << std::endl
       << "#" << std::endl 
       << "# The next line is critical for Dart to work" << std::endl 
       << "# Duh :-)" << std::endl << std::endl;

  // get our output directory
  std::string outDir = mf->GetStartOutputDirectory();
  outDir += "/";
  
  // write out the subdirs for the current directory
  std::vector<cmLocalGenerator *>& children = 
    mf->GetLocalGenerator()->GetChildren();
  
  unsigned int i;
  if (children.size())
    {
    fout << "SUBDIRS(";
    std::string binP = children[0]->GetMakefile()->GetStartOutputDirectory();
    cmSystemTools::ReplaceString(binP, outDir.c_str(), "");
    fout << binP.c_str();
    for(i = 1; i < children.size(); ++i)
      {
      binP = children[i]->GetMakefile()->GetStartOutputDirectory();
      cmSystemTools::ReplaceString(binP, outDir.c_str(), "");
      fout << " " << binP.c_str();
      }
    fout << ")" << std::endl << std::endl;;
    }
  fout.close();  
  
  // then recurse
  if (children.size())
    {
    for(i = 0; i < children.size(); ++i)
      {
      this->CreateDartTestfileForMakefile(children[i]->GetMakefile());
      }
    }
  
  
  return;
}