[Cmake-commits] CMake branch, next, updated. v3.0.1-5128-gac18e41

Brad King brad.king at kitware.com
Wed Sep 3 14:56:12 EDT 2014


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  ac18e416fefc0f7fdf56b8a5502228a3c9c06064 (commit)
       via  2603e128818e187a11db3c52a0d6777e58d2d4d9 (commit)
      from  1826ab1531d432c8076c5a505ad723f9a5c9ce4c (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=ac18e416fefc0f7fdf56b8a5502228a3c9c06064
commit ac18e416fefc0f7fdf56b8a5502228a3c9c06064
Merge: 1826ab1 2603e12
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed Sep 3 14:56:12 2014 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Sep 3 14:56:12 2014 -0400

    Merge topic 'bash-complete-ctest-labels' into next
    
    2603e128 bash-completion: Complete 'ctest' label names


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=2603e128818e187a11db3c52a0d6777e58d2d4d9
commit 2603e128818e187a11db3c52a0d6777e58d2d4d9
Author:     Sylvain Joubert <joubert.sy at gmail.com>
AuthorDate: Wed Sep 3 20:26:17 2014 +0200
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Wed Sep 3 14:56:13 2014 -0400

    bash-completion: Complete 'ctest' label names

diff --git a/Auxiliary/bash-completion/ctest b/Auxiliary/bash-completion/ctest
index 25cb998..327e12c 100644
--- a/Auxiliary/bash-completion/ctest
+++ b/Auxiliary/bash-completion/ctest
@@ -19,8 +19,12 @@ _ctest()
             _filedir
             return
             ;;
-        -L|--label-regex|-LE|--label-exclude|--track|-I|--tests-information|\
-        --max-width|--timeout|--stop-time)
+        -L|--label-regex|-LE|--label-exclude)
+            COMPREPLY=( $( compgen -W '$( ctest --print-labels 2>/dev/null |
+                grep "^  " 2>/dev/null | cut -d" " -f 3 )' -- "$cur" ) )
+            return
+            ;;
+        --track|-I|--tests-information|--max-width|--timeout|--stop-time)
             # argument required but no completions available
             return
             ;;

-----------------------------------------------------------------------

Summary of changes:
 Auxiliary/bash-completion/ctest |    8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list