comparison src/testdir/Makefile @ 19465:07627d1b4d8c v8.2.0290

patch 8.2.0290: running individual test differs from all tests Commit: https://github.com/vim/vim/commit/85683ec620be199d63af3b0542a03eeb72b08fb6 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 20 22:35:02 2020 +0100 patch 8.2.0290: running individual test differs from all tests Problem: Running individual test differs from all tests. Solution: Pass on environment variables. (Yee Cheng Chin, closes https://github.com/vim/vim/issues/5672)
author Bram Moolenaar <Bram@vim.org>
date Thu, 20 Feb 2020 22:45:03 +0100
parents 41b2506c7662
children b471038ec3ea
comparison
equal deleted inserted replaced
19464:f26f4ce18b1a 19465:07627d1b4d8c
71 71
72 # Execute an individual new style test, e.g.: 72 # Execute an individual new style test, e.g.:
73 # make test_largefile 73 # make test_largefile
74 $(NEW_TESTS): 74 $(NEW_TESTS):
75 rm -f $@.res test.log messages 75 rm -f $@.res test.log messages
76 @MAKEFLAGS=--no-print-directory $(MAKE) -f Makefile $@.res 76 @MAKEFLAGS=--no-print-directory $(MAKE) -f Makefile $@.res VIMPROG=$(VIMPROG) XXDPROG=$(XXDPROG) SCRIPTSOURCE=$(SCRIPTSOURCE)
77 @cat messages 77 @cat messages
78 @if test -f test.log; then \ 78 @if test -f test.log; then \
79 exit 1; \ 79 exit 1; \
80 fi 80 fi
81 81