Skip to content

Commit 432c839

Browse files
committed
patch 8.0.0272: crash on exit is not detected when running tests
Problem: Crash on exit is not detected when running tests. Solution: Remove the dash before the command. (Dominique Pelle, closes #1425)
1 parent a4c906a commit 432c839

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/testdir/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ test1.out: test1.in
7878
# 200 msec is sufficient, but only modern sleep supports a fraction of
7979
# a second, fall back to a second if it fails.
8080
@-/bin/sh -c "sleep .2 > /dev/null 2>&1 || sleep 1"
81-
-$(RUN_VIM) $*.in
81+
$(RUN_VIM) $*.in
8282

8383
# For flaky tests retry one time. No tests at the moment.
8484
#@/bin/sh -c "if test -f test.out -a $* = test61; then \
@@ -108,7 +108,7 @@ bench_re_freeze.out: bench_re_freeze.vim
108108
# 200 msec is sufficient, but only modern sleep supports a fraction of
109109
# a second, fall back to a second if it fails.
110110
@-/bin/sh -c "sleep .2 > /dev/null 2>&1 || sleep 1"
111-
-$(RUN_VIM) $*.in
111+
$(RUN_VIM) $*.in
112112
@/bin/sh -c "if test -f benchmark.out; then cat benchmark.out; fi"
113113

114114
nolog:

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
272,
767769
/**/
768770
271,
769771
/**/

0 commit comments

Comments
 (0)