]> granicus.if.org Git - vim/commitdiff
patch 8.0.0272: crash on exit is not detected when running tests v8.0.0272
authorBram Moolenaar <Bram@vim.org>
Mon, 30 Jan 2017 21:01:01 +0000 (22:01 +0100)
committerBram Moolenaar <Bram@vim.org>
Mon, 30 Jan 2017 21:01:01 +0000 (22:01 +0100)
Problem:    Crash on exit is not detected when running tests.
Solution:   Remove the dash before the command. (Dominique Pelle, closes
            #1425)

src/testdir/Makefile
src/version.c

index 08f11cd1c5dbf991dc132ba34380024e37d58e85..bb0249ac7cba053ca9c0f8c4ae0d414a15e38614 100644 (file)
@@ -78,7 +78,7 @@ test1.out: test1.in
        # 200 msec is sufficient, but only modern sleep supports a fraction of
        # a second, fall back to a second if it fails.
        @-/bin/sh -c "sleep .2 > /dev/null 2>&1 || sleep 1"
-       -$(RUN_VIM) $*.in
+       $(RUN_VIM) $*.in
 
        # For flaky tests retry one time.  No tests at the moment.
        #@/bin/sh -c "if test -f test.out -a $* = test61; then \
@@ -108,7 +108,7 @@ bench_re_freeze.out: bench_re_freeze.vim
        # 200 msec is sufficient, but only modern sleep supports a fraction of
        # a second, fall back to a second if it fails.
        @-/bin/sh -c "sleep .2 > /dev/null 2>&1 || sleep 1"
-       -$(RUN_VIM) $*.in
+       $(RUN_VIM) $*.in
        @/bin/sh -c "if test -f benchmark.out; then cat benchmark.out; fi"
 
 nolog:
index 9474c5ea8e2cf142e86ad445b467e1d25790365a..cfaa0b84376f24b31eb0a7db0a329a0628f62454 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    272,
 /**/
     271,
 /**/