Patch 7.4.1852
Problem:    Unix: Cannot run all tests with the GUI.
Solution:   Add the "testgui" target.
Files:      src/Makefile, src/testdir/Makefile


*** ../vim-7.4.1851/src/Makefile        2016-04-30 15:08:12.095333714 +0200
--- src/Makefile        2016-05-28 13:38:58.842645632 +0200
***************
*** 582,588 ****
  #CFLAGS = -g -O2 '-DSTARTUPTIME="vimstartup"' -fno-strength-reduce -Wall 
-Wmissing-prototypes
  
  # Use this with GCC to check for mistakes, unused arguments, etc.
! #CFLAGS = -g -Wall -Wextra -Wmissing-prototypes -Wunreachable-code 
-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1
  #CFLAGS = -g -O2 -Wall -Wextra -Wmissing-prototypes -U_FORTIFY_SOURCE 
-D_FORTIFY_SOURCE=1 -DU_DEBUG
  #PYTHON_CFLAGS_EXTRA = -Wno-missing-field-initializers
  #MZSCHEME_CFLAGS_EXTRA = -Wno-unreachable-code -Wno-unused-parameter
--- 582,588 ----
  #CFLAGS = -g -O2 '-DSTARTUPTIME="vimstartup"' -fno-strength-reduce -Wall 
-Wmissing-prototypes
  
  # Use this with GCC to check for mistakes, unused arguments, etc.
! #CFLAGS = -g -Wall -Wextra -Wshadow -Wmissing-prototypes -Wunreachable-code 
-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1
  #CFLAGS = -g -O2 -Wall -Wextra -Wmissing-prototypes -U_FORTIFY_SOURCE 
-D_FORTIFY_SOURCE=1 -DU_DEBUG
  #PYTHON_CFLAGS_EXTRA = -Wno-missing-field-initializers
  #MZSCHEME_CFLAGS_EXTRA = -Wno-unreachable-code -Wno-unused-parameter
***************
*** 1943,1948 ****
--- 1943,1952 ----
        cd testdir; $(MAKE) -f Makefile $(GUI_TESTTARGET) 
VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
        $(MAKE) -f Makefile unittest
  
+ # Run the tests with the GUI.  Assumes vim/gvim was already built
+ testgui:
+       cd testdir; $(MAKE) -f Makefile $(GUI_TESTTARGET) 
VIMPROG=../$(VIMTARGET) GUI_FLAG=-g $(GUI_TESTARG) 
SCRIPTSOURCE=../$(SCRIPTSOURCE)
+ 
  benchmark:
        cd testdir; $(MAKE) -f Makefile benchmark VIMPROG=../$(VIMTARGET) 
SCRIPTSOURCE=../$(SCRIPTSOURCE)
  
***************
*** 2057,2062 ****
--- 2061,2067 ----
        test_viminfo \
        test_viml \
        test_visual \
+       test_window_cmd \
        test_window_id \
        test_alot_latin \
        test_alot_utf8 \
*** ../vim-7.4.1851/src/testdir/Makefile        2016-02-25 21:21:47.985840901 
+0100
--- src/testdir/Makefile        2016-05-28 13:31:32.750651768 +0200
***************
*** 12,18 ****
  #   The output goes into a file "valgrind.testN"
  #   Vim should be compiled with EXITFREE to avoid false warnings.
  #   This will make testing about 10 times as slow.
! # VALGRIND = valgrind --tool=memcheck --leak-check=yes --num-callers=15 
--log-file=valgrind.$*
  
  default: nongui
  
--- 12,18 ----
  #   The output goes into a file "valgrind.testN"
  #   Vim should be compiled with EXITFREE to avoid false warnings.
  #   This will make testing about 10 times as slow.
! # VALGRIND = valgrind --tool=memcheck --leak-check=yes --num-callers=25 
--log-file=valgrind.$*
  
  default: nongui
  
***************
*** 52,58 ****
  
  RM_ON_RUN = test.out X* viminfo
  RM_ON_START = tiny.vim small.vim mbyte.vim mzscheme.vim lua.vim test.ok 
benchmark.out
! RUN_VIM = VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(VALGRIND) 
$(VIMPROG) -f -u unix.vim $(NO_PLUGIN) -s dotest.in
  
  clean:
        -rm -rf *.out *.failed *.res *.rej *.orig test.log messages 
$(RM_ON_RUN) $(RM_ON_START) valgrind.*
--- 52,58 ----
  
  RM_ON_RUN = test.out X* viminfo
  RM_ON_START = tiny.vim small.vim mbyte.vim mzscheme.vim lua.vim test.ok 
benchmark.out
! RUN_VIM = VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(VALGRIND) 
$(VIMPROG) -f $(GUI_FLAG) -u unix.vim $(NO_PLUGIN) -s dotest.in
  
  clean:
        -rm -rf *.out *.failed *.res *.rej *.orig test.log messages 
$(RM_ON_RUN) $(RM_ON_START) valgrind.*
***************
*** 118,124 ****
  # New style of tests uses Vim script with assert calls.  These are easier
  # to write and a lot easier to read and debug.
  # Limitation: Only works with the +eval feature.
! RUN_VIMTEST = VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(VALGRIND) 
$(VIMPROG) -f -u unix.vim $(NO_PLUGIN)
  
  newtests: newtestssilent
        @/bin/sh -c "if test -f messages && grep -q 'FAILED' messages; then cat 
messages && cat test.log; fi"
--- 118,124 ----
  # New style of tests uses Vim script with assert calls.  These are easier
  # to write and a lot easier to read and debug.
  # Limitation: Only works with the +eval feature.
! RUN_VIMTEST = VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(VALGRIND) 
$(VIMPROG) -f $(GUI_FLAG) -u unix.vim $(NO_PLUGIN)
  
  newtests: newtestssilent
        @/bin/sh -c "if test -f messages && grep -q 'FAILED' messages; then cat 
messages && cat test.log; fi"
*** ../vim-7.4.1851/src/version.c       2016-05-28 13:28:06.330654608 +0200
--- src/version.c       2016-05-28 13:38:30.554646021 +0200
***************
*** 755,756 ****
--- 755,758 ----
  {   /* Add new patch number below this line */
+ /**/
+     1852,
  /**/

-- 
Far out in the uncharted backwaters of the unfashionable end of the
Western Spiral arm of the Galaxy lies a small unregarded yellow sun.
Orbiting this at a distance of roughly ninety-eight million miles is an
utterly insignificant little blue-green planet whose ape-descended life
forms are so amazingly primitive that they still think digital watches
are a pretty neat idea ...
                -- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"

 /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Raspunde prin e-mail lui