unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* compile regexp perl Test module
@ 2003-12-02 20:56 Kevin Ryde
  2004-02-16  0:43 ` Kevin Ryde
  0 siblings, 1 reply; 3+ messages in thread
From: Kevin Ryde @ 2003-12-02 20:56 UTC (permalink / raw)


[-- Attachment #1: Type: text/plain, Size: 399 bytes --]

The format of the failure messages from the perl "Test" module is not
quite the same as from its normal compiling,

        * progmodes/compile.el (compilation-error-regexp-alist): Add perl
        "Test" module error messages.

I've only ever bothered with the plain ok(X) form myself, which is the
first message shown in the comment, but I added the other styles too.
Sample foo.pl I used below.


[-- Attachment #2: compile.el.perl-test.diff --]
[-- Type: text/plain, Size: 923 bytes --]

*** compile.el.~1.282.~	Wed Nov 26 09:29:21 2003
--- compile.el	Tue Dec  2 15:43:25 2003
*************** (defvar compilation-error-regexp-alist
*** 339,344 ****
--- 339,354 ----
      ;; store::odrecall('File_A', 'x2') called at store.pm line 90
      (".* at \\([^ \n]+\\) line \\([0-9]+\\)[,.\n]" 1 2)
  
+     ;; Perl "Test" module:
+     ;;  # Failed test 2 in foo.pl at line 6
+     ;;  # Test 3 got: '0' (foo.pl at line 7)
+     ;; Expected failures (don't match these):
+     ;;  # Failed test 5 in foo.pl at line 10 *TODO*
+     ;;  # Test 6 got: '0' (foo.pl at line 11 *TODO*)
+     ;; Unexpected success:
+     ;;  ok 8 # (foo.pl at line 14 TODO?!)
+     (".*\\((\\| in \\)\\([^ \n]+\\) at line \\([0-9]+\\)\\(\n\\|)\\| TODO\\?!)\\)" 2 3)
+ 
      ;; Oracle pro*c:
      ;; Semantic error at line 528, column 5, file erosacqdb.pc:
      ("Semantic error at line \\([0-9]+\\), column \\([0-9]+\\), file \\(.*\\):"

[-- Attachment #3: foo.pl --]
[-- Type: application/x-perl, Size: 518 bytes --]

[-- Attachment #4: Type: text/plain, Size: 141 bytes --]

_______________________________________________
Emacs-devel mailing list
Emacs-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/emacs-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2004-02-18 17:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-12-02 20:56 compile regexp perl Test module Kevin Ryde
2004-02-16  0:43 ` Kevin Ryde
2004-02-18 17:55   ` Richard Stallman

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).