[Cmake-commits] [cmake-commits] king committed CMakeLists.txt NONE 1.1 testXMLParser.cxx NONE 1.1 testXMLParser.h.in NONE 1.1 testXMLParser.xml NONE 1.1

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Dec 8 11:44:52 EST 2009


Update of /cvsroot/CMake/CMake/Tests/CMakeLib
In directory public:/mounts/ram/cvs-serv3184/Tests/CMakeLib

Added Files:
	CMakeLists.txt testXMLParser.cxx testXMLParser.h.in 
	testXMLParser.xml 
Log Message:
Create CMakeLib test driver and test cmXMLParser

We create a new CMakeLibTests driver executable in which to writes unit
tests for CMakeLib.  Our first test is a smoke-test of cmXMLParser.


--- NEW FILE: testXMLParser.h.in ---
#ifndef testXMLParser_h
#define testXMLParser_h

#define SOURCE_DIR "@CMAKE_CURRENT_SOURCE_DIR@"

#endif

--- NEW FILE: CMakeLists.txt ---
include_directories(
  ${CMAKE_CURRENT_BINARY_DIR}
  ${CMake_BINARY_DIR}/Source
  ${CMake_SOURCE_DIR}/Source
  )

set(CMakeLib_TESTS
  testXMLParser
  )

configure_file(${CMAKE_CURRENT_SOURCE_DIR}/testXMLParser.h.in
               ${CMAKE_CURRENT_BINARY_DIR}/testXMLParser.h @ONLY)

create_test_sourcelist(CMakeLib_TEST_SRCS CMakeLibTests.cxx ${CMakeLib_TESTS})
add_executable(CMakeLibTests ${CMakeLib_TEST_SRCS})
target_link_libraries(CMakeLibTests CMakeLib)

foreach(test ${CMakeLib_TESTS})
  add_test(CMakeLib.${test} CMakeLibTests ${test})
endforeach()

--- NEW FILE: testXMLParser.cxx ---
#include "testXMLParser.h"

#include "cmXMLParser.h"

#include <cmsys/ios/iostream>

int testXMLParser(int, char*[])
{
  // TODO: Derive from parser and check attributes.
  cmXMLParser parser;
  if(!parser.ParseFile(SOURCE_DIR "/testXMLParser.xml"))
    {
    cmsys_ios::cerr << "cmXMLParser failed!" << cmsys_ios::endl;
    return 1;
    }
  return 0;
}

--- NEW FILE: testXMLParser.xml ---
<?xml version="1.0" encoding="UTF-8"?>
<Document>
  <Element attr="1"/>
</Document>



More information about the Cmake-commits mailing list