Mercurial > vim
view runtime/tools/efm_filter.pl @ 17594:3b18d5341c03 v8.1.1794
patch 8.1.1794: tests are flaky
commit https://github.com/vim/vim/commit/f2d8b7a0a69fd71018341755da5ce55d067b5923
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Aug 2 22:46:11 2019 +0200
patch 8.1.1794: tests are flaky
Problem: Tests are flaky.
Solution: Undo the change to vgetorpeek().
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 02 Aug 2019 23:00:07 +0200 |
parents | 3fc0f57ecb91 |
children |
line wrap: on
line source
#!/usr/bin/env perl # # This program works as a filter that reads from stdin, copies to # stdout *and* creates an error file that can be read by vim. # # This program has only been tested on SGI, Irix5.3. # # Written by Ives Aerts in 1996. This little program is not guaranteed # to do (or not do) anything at all and can be freely used for # whatever purpose you can think of. $args = @ARGV; unless ($args == 1) { die("Usage: vimccparse <output filename>\n"); } $filename = @ARGV[0]; open (OUT, ">$filename") || die ("Can't open file: \"$filename\""); while (<STDIN>) { print; if ( (/"(.*)", line (\d+): (e)rror\((\d+)\):/) || (/"(.*)", line (\d+): (w)arning\((\d+)\):/) ) { $file=$1; $line=$2; $errortype="\u$3"; $errornr=$4; chop($errormsg=<STDIN>); $errormsg =~ s/^\s*//; $sourceline=<STDIN>; $column=index(<STDIN>, "^") - 1; print OUT "$file>$line:$column:$errortype:$errornr:$errormsg\n"; } } close(OUT); exit(0);