This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMake".
The branch, next has been updated via d719a29105ebee82354546065f25154c413f887d (commit) via 7af41c3492c5c11d6931383810e079be74309096 (commit) from 5cbfd2dff81fcabef03c4a1da58fa46dbccd1eb0 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d719a29105ebee82354546065f25154c413f887d commit d719a29105ebee82354546065f25154c413f887d Merge: 5cbfd2d 7af41c3 Author: Brad King <brad.k...@kitware.com> AuthorDate: Sat Jan 15 08:18:58 2011 -0500 Commit: CMake Topic Stage <kwro...@kitware.com> CommitDate: Sat Jan 15 08:18:58 2011 -0500 Merge topic 'missing-file-dir-issue-11677' into next 7af41c3 Test that missing source mentions directory (#11677) http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7af41c3492c5c11d6931383810e079be74309096 commit 7af41c3492c5c11d6931383810e079be74309096 Author: Brad King <brad.k...@kitware.com> AuthorDate: Sat Jan 15 08:16:50 2011 -0500 Commit: Brad King <brad.k...@kitware.com> CommitDate: Sat Jan 15 08:16:50 2011 -0500 Test that missing source mentions directory (#11677) Teach the MissingSourceFile test to verify that the directory portion of a missing source file is mentioned in the error message. diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index c5331be..791a778 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -149,7 +149,7 @@ IF(BUILD_TESTING) ADD_TEST_MACRO(PreOrder PreOrder) ADD_TEST_MACRO(MissingSourceFile MissingSourceFile) SET_TESTS_PROPERTIES(MissingSourceFile PROPERTIES - PASS_REGULAR_EXPRESSION "CMake Error at CMakeLists.txt:3 \\(add_executable\\):[ \r\n]*Cannot find source file \"MissingSourceFile.c\"") + PASS_REGULAR_EXPRESSION "CMake Error at CMakeLists.txt:3 \\(add_executable\\):[ \r\n]*Cannot find source file:[ \r\n]*DoesNotExist/MissingSourceFile.c") ADD_TEST_MACRO(COnly COnly) ADD_TEST_MACRO(CxxOnly CxxOnly) ADD_TEST_MACRO(IPO COnly/COnly) diff --git a/Tests/MissingSourceFile/CMakeLists.txt b/Tests/MissingSourceFile/CMakeLists.txt index 42b7c51..a7206c8 100644 --- a/Tests/MissingSourceFile/CMakeLists.txt +++ b/Tests/MissingSourceFile/CMakeLists.txt @@ -1,3 +1,3 @@ cmake_minimum_required(VERSION 2.8) project(MissingSourceFile C) -add_executable(MissingSourceFile MissingSourceFile.c) +add_executable(MissingSourceFile DoesNotExist/MissingSourceFile.c) ----------------------------------------------------------------------- Summary of changes: Tests/CMakeLists.txt | 2 +- Tests/MissingSourceFile/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- CMake _______________________________________________ Cmake-commits mailing list Cmake-commits@cmake.org http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits