aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJö Fahlke2016-04-23 03:10:46 +0200
committerOscar Fuentes2016-04-23 03:10:46 +0200
commit912e9159818f7356d45cc28b6666680b9857d7e7 (patch)
tree9799b378e8156162a8dba4e7ac64e95eebef7909 /test
parent6e790b71efae6003b9fa701a8630ee69e0a94294 (diff)
downloademacs-912e9159818f7356d45cc28b6666680b9857d7e7.tar.gz
emacs-912e9159818f7356d45cc28b6666680b9857d7e7.zip
Regexps for matching CMake output
* lisp/progmodes/compile.el (compilation-error-regexp-alist-alist): Add regexps for matching CMake output. * test/lisp/progmodes/compile-tests.el (compile-tests--test-regexps-data): Add CMake test cases. * etc/compilation.txt (CMake): Add CMake examples. Copyright-paperwork-exempt: yes
Diffstat (limited to 'test')
-rw-r--r--test/lisp/progmodes/compile-tests.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/lisp/progmodes/compile-tests.el b/test/lisp/progmodes/compile-tests.el
index 6821a6bfae5..89615760c77 100644
--- a/test/lisp/progmodes/compile-tests.el
+++ b/test/lisp/progmodes/compile-tests.el
@@ -79,6 +79,13 @@
79 1 nil 302 "\\lib\\python\\Products\\PythonScripts\\PythonScript.py") 79 1 nil 302 "\\lib\\python\\Products\\PythonScripts\\PythonScript.py")
80 ("File \"/tmp/foo.py\", line 10" 80 ("File \"/tmp/foo.py\", line 10"
81 1 nil 10 "/tmp/foo.py") 81 1 nil 10 "/tmp/foo.py")
82 ;; cmake cmake-info
83 ("CMake Error at CMakeLists.txt:23 (hurz):"
84 1 nil 23 "CMakeLists.txt")
85 ("CMake Warning at cmake/modules/UseUG.cmake:73 (find_package):"
86 1 nil 73 "cmake/modules/UseUG.cmake")
87 (" cmake/modules/DuneGridMacros.cmake:19 (include)"
88 1 nil 19 "cmake/modules/DuneGridMacros.cmake")
82 ;; comma 89 ;; comma
83 ("\"foo.f\", line 3: Error: syntax error near end of statement" 90 ("\"foo.f\", line 3: Error: syntax error near end of statement"
84 1 nil 3 "foo.f") 91 1 nil 3 "foo.f")