2009-07-10 19:08:05 +04:00
|
|
|
# This script drives creation of a Mercurial repository and checks
|
|
|
|
# that CTest can update from it.
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Test in a directory next to this script.
|
|
|
|
get_filename_component(TOP "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
|
|
|
set(TOP "${TOP}/@CTestUpdateHG_DIR@")
|
|
|
|
|
|
|
|
# Include code common to all update tests.
|
|
|
|
include("@CMAKE_CURRENT_SOURCE_DIR@/CTestUpdateCommon.cmake")
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Report hg tools in use.
|
|
|
|
message("Using HG tools:")
|
|
|
|
set(HG "@HG_EXECUTABLE@")
|
|
|
|
message(" hg = ${HG}")
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Initialize the testing directory.
|
|
|
|
message("Creating test directory...")
|
|
|
|
init_testing()
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Create the repository.
|
|
|
|
message("Creating repository...")
|
|
|
|
file(MAKE_DIRECTORY ${TOP}/repo.hg)
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/repo.hg
|
|
|
|
COMMAND ${HG} init
|
|
|
|
)
|
2012-03-22 19:56:41 +04:00
|
|
|
if(NOT "${TOP}" MATCHES "^/")
|
|
|
|
set(slash /)
|
|
|
|
endif()
|
|
|
|
set(REPO file://${slash}${TOP}/repo.hg)
|
2009-07-10 19:08:05 +04:00
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Import initial content into the repository.
|
|
|
|
message("Importing content...")
|
|
|
|
create_content(import)
|
|
|
|
|
|
|
|
# Import the content into the repository.
|
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/import
|
|
|
|
COMMAND ${HG} init
|
|
|
|
)
|
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/import
|
|
|
|
COMMAND ${HG} add .
|
|
|
|
)
|
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/import
|
|
|
|
COMMAND ${HG} commit -m "Initial content"
|
|
|
|
-u "Test Author <testauthor@cmake.org>"
|
|
|
|
)
|
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/import
|
|
|
|
COMMAND ${HG} push "${REPO}"
|
|
|
|
)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Create a working tree.
|
|
|
|
message("Checking out first revision...")
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}
|
|
|
|
COMMAND ${HG} clone ${REPO} user-source
|
|
|
|
)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Make changes in the working tree.
|
|
|
|
message("Changing content...")
|
|
|
|
update_content(user-source files_added files_removed dirs_added)
|
|
|
|
if(dirs_added)
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${HG} add ${dirs_added}
|
|
|
|
)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2009-07-10 19:08:05 +04:00
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${HG} add ${files_added}
|
|
|
|
)
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${HG} rm ${files_removed}
|
|
|
|
)
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${HG} add
|
|
|
|
)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Commit the changes to the repository.
|
|
|
|
message("Committing revision 2...")
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${HG} commit -m "Changed content"
|
|
|
|
-u "Test Author <testauthor@cmake.org>"
|
|
|
|
)
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${HG} push
|
|
|
|
)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Make changes in the working tree.
|
|
|
|
message("Changing content again...")
|
|
|
|
change_content(user-source)
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${HG} add
|
|
|
|
)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Commit the changes to the repository.
|
|
|
|
message("Committing revision 3...")
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${HG} commit -m "Changed content again"
|
|
|
|
-u "Test Author <testauthor@cmake.org>"
|
|
|
|
)
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${HG} push
|
|
|
|
)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Go back to before the changes so we can test updating.
|
|
|
|
message("Backing up to first revision...")
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${HG} update -C -r 0
|
|
|
|
)
|
|
|
|
|
|
|
|
# Create a modified file.
|
|
|
|
modify_content(user-source)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Test updating the user work directory with the command-line interface.
|
|
|
|
message("Running CTest Dashboard Command Line...")
|
|
|
|
|
|
|
|
# Create the user build tree.
|
|
|
|
create_build_tree(user-source user-binary)
|
|
|
|
file(APPEND ${TOP}/user-binary/CTestConfiguration.ini
|
|
|
|
"# HG command configuration
|
|
|
|
UpdateCommand: ${HG}
|
|
|
|
")
|
|
|
|
|
|
|
|
# Run the dashboard command line interface.
|
|
|
|
run_dashboard_command_line(user-binary)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Test initial checkout and update with a dashboard script.
|
|
|
|
message("Running CTest Dashboard Script...")
|
|
|
|
|
2010-06-08 23:58:39 +04:00
|
|
|
create_dashboard_script(dash-binary
|
2009-07-10 19:08:05 +04:00
|
|
|
"# hg command configuration
|
|
|
|
set(CTEST_HG_COMMAND \"${HG}\")
|
|
|
|
set(CTEST_HG_UPDATE_OPTIONS)
|
|
|
|
execute_process(
|
|
|
|
WORKING_DIRECTORY \"${TOP}\"
|
|
|
|
COMMAND \"${HG}\" clone \"${REPO}\" dash-source
|
|
|
|
)
|
|
|
|
execute_process(
|
|
|
|
WORKING_DIRECTORY \"${TOP}/dash-source\"
|
|
|
|
COMMAND \"${HG}\" update -C -r 0
|
|
|
|
)
|
|
|
|
")
|
|
|
|
|
|
|
|
# Run the dashboard script with CTest.
|
2010-06-08 23:58:39 +04:00
|
|
|
run_dashboard_script(dash-binary)
|