/*========================================================================= 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. =========================================================================*/ #ifndef cmCTestRunTest_h #define cmCTestRunTest_h #include #include #include /** \class cmRunTest * \brief represents a single test to be run * * cmRunTest contains the information related to running a single test */ class cmCTestRunTest { public: cmCTestRunTest(); ~cmCTestRunTest(); void SetTestProperties(cmCTestTestHandler::cmCTestTestProperties * prop) { this->TestProperties = prop; } cmCTestTestHandler::cmCTestTestProperties * GetTestProperties() { return this->TestProperties; } void SetTestHandler(cmCTestTestHandler * handler); void SetIndex(int i) { this->Index = i; } void SetCTest(cmCTest * ct) { this->CTest = ct; } int GetIndex() { return this->Index; } std::string GetProcessOutput() { return this->ProcessOutput; } cmCTestTestHandler::cmCTestTestResult GetTestResults() { return this->TestResult; } bool IsRunning(); void CheckOutput(); //launch the test process, return whether it started correctly bool StartTest(); //capture the test results and send them back to the test handler bool EndTest(); protected: void DartProcessing(); bool CreateProcess(std::string executable, std::vector args, double testTimeOut, std::vector* environment); private: cmCTestTestHandler::cmCTestTestProperties * TestProperties; //Pointer back to the "parent"; the handler that invoked this test run cmCTestTestHandler * TestHandler; cmCTest * CTest; cmProcess * TestProcess; //If the executable to run is ctest, don't create a new process; //just instantiate a new cmTest. (Can be disabled for a single test //if this option is set to false.) //bool OptimizeForCTest; //flag for whether the env was modified for this run bool ModifyEnv; //stores the original environment if we are modifying it std::vector OrigEnv; std::string ProcessOutput; //The test results cmCTestTestHandler::cmCTestTestResult TestResult; int Index; std::string StartTime; std::string TestCommand; std::string ActualCommand; void WriteLogOutputTop(); }; #endif