diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-11-05 22:37:20 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-11-05 22:37:20 +0100 |
commit | 7d2320414ffdd698c9a17d775f71e2c455c21624 (patch) | |
tree | 84ea1ff797c003be62948be2f09f224ee621b2b8 /src/testdir/Make_dos.mak | |
parent | dc968e7a45c672a81148628b755c2a440a228ad7 (diff) | |
download | vim-git-7d2320414ffdd698c9a17d775f71e2c455c21624.tar.gz |
patch 8.1.2259: running tests may leave XfakeHOME behindv8.1.2259
Problem: Running tests may leave XfakeHOME behind.
Solution: Source summarize.vim without using setup.vim. (closes #5177)
Also fix that on MS-Windows the test log isn't echoed.
Diffstat (limited to 'src/testdir/Make_dos.mak')
-rw-r--r-- | src/testdir/Make_dos.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/Make_dos.mak b/src/testdir/Make_dos.mak index 7aec010c8..66839d63b 100644 --- a/src/testdir/Make_dos.mak +++ b/src/testdir/Make_dos.mak @@ -75,7 +75,7 @@ report: $(VIMPROG) -u NONE $(NO_INITS) -S summarize.vim messages @echo. @echo Test results: - @type test_result.log + @cmd /c type test_result.log @if exist test.log ( echo TEST FAILURE & exit /b 1 ) \ else ( echo ALL DONE ) |