##// END OF EJS Templates
contrib: also linkify tracebacks in compilation output when using hg-test-mode...
Augie Fackler -
r41952:b6c062bb default
parent child Browse files
Show More
@@ -54,6 +54,11 b''
54 (run-hooks 'hg-test-mode-hook))
54 (run-hooks 'hg-test-mode-hook))
55
55
56 (with-eval-after-load "compile"
56 (with-eval-after-load "compile"
57 ;; Link to Python sources in tracebacks in .t failures.
58 (add-to-list 'compilation-error-regexp-alist-alist
59 '(hg-test-output-python-tb
60 "^\\+ +File ['\"]\\([^'\"]+\\)['\"], line \\([0-9]+\\)," 1 2))
61 (add-to-list 'compilation-error-regexp-alist 'hg-test-output-python-tb)
57 ;; Link to source files in test-check-code.t violations.
62 ;; Link to source files in test-check-code.t violations.
58 (add-to-list 'compilation-error-regexp-alist-alist
63 (add-to-list 'compilation-error-regexp-alist-alist
59 '(hg-test-check-code-output
64 '(hg-test-check-code-output
General Comments 0
You need to be logged in to leave comments. Login now