diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2015-06-22 22:18:10 -0400 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2015-06-22 22:18:10 -0400 |
| commit | ae9eb747e00ffc9179e25181d4edaf7ee462c4bf (patch) | |
| tree | 742c66d06be5e2ed5dfb1d8d7c1cb873fd104d01 /src/nvim/testdir/Makefile | |
| parent | a743297be2b39247fc0086302a8a370d46ee0290 (diff) | |
| parent | c411fb6cda9a9688785117346e791461cd52a1b5 (diff) | |
| download | rneovim-ae9eb747e00ffc9179e25181d4edaf7ee462c4bf.tar.gz rneovim-ae9eb747e00ffc9179e25181d4edaf7ee462c4bf.tar.bz2 rneovim-ae9eb747e00ffc9179e25181d4edaf7ee462c4bf.zip | |
Merge #2851 'tests: Migrate legacy test 61.'.
Diffstat (limited to 'src/nvim/testdir/Makefile')
| -rw-r--r-- | src/nvim/testdir/Makefile | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index b982dbcbb3..da99c6d1c4 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -19,7 +19,7 @@ SCRIPTS := test_eval.out \ test46.out test47.out test48.out test49.out \ test52.out test53.out test55.out \ test57.out test58.out test59.out \ - test61.out test62.out test63.out test64.out \ + test62.out test63.out test64.out \ test68.out test69.out \ test71.out test73.out \ test79.out test80.out \ @@ -126,15 +126,6 @@ test1.out: .gdbinit test1.in @-/bin/sh -c "sleep .2 > /dev/null 2>&1 || sleep 1" $(RUN_VIM) $*.in - # For flaky tests retry one time. - @/bin/sh -c "if test -f test.out -a $* = test61; then \ - if diff test.out $*.ok; then \ - echo flaky test ok first time; \ - else rm -rf $*.failed $(RM_ON_RUN); \ - $(RUN_VIM) $*.in; \ - fi; \ - fi" - # Check if the test.out file matches test.ok. @/bin/sh -c "if test -f test.out; then \ if diff test.out $*.ok; then \ |