diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-02-20 22:35:02 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-02-20 22:35:02 +0100 |
commit | 85683ec620be199d63af3b0542a03eeb72b08fb6 (patch) | |
tree | eb8d86c4ed0e8b5d5153f1c61aa1506c954e8f28 /src/testdir/Makefile | |
parent | e0807ea4a715334bd9a4795d98cad6e7925b5281 (diff) | |
download | vim-git-85683ec620be199d63af3b0542a03eeb72b08fb6.tar.gz |
patch 8.2.0290: running individual test differs from all testsv8.2.0290
Problem: Running individual test differs from all tests.
Solution: Pass on environment variables. (Yee Cheng Chin, closes #5672)
Diffstat (limited to 'src/testdir/Makefile')
-rw-r--r-- | src/testdir/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/Makefile b/src/testdir/Makefile index a0520e0fb..746c84993 100644 --- a/src/testdir/Makefile +++ b/src/testdir/Makefile @@ -73,7 +73,7 @@ $(SCRIPTS) $(SCRIPTS_GUI) $(NEW_TESTS_RES): $(SCRIPTS_FIRST) # make test_largefile $(NEW_TESTS): rm -f $@.res test.log messages - @MAKEFLAGS=--no-print-directory $(MAKE) -f Makefile $@.res + @MAKEFLAGS=--no-print-directory $(MAKE) -f Makefile $@.res VIMPROG=$(VIMPROG) XXDPROG=$(XXDPROG) SCRIPTSOURCE=$(SCRIPTSOURCE) @cat messages @if test -f test.log; then \ exit 1; \ |