I've made some comments silent in the src/testdir Makefile, to keep them from being printed during test runs.
Kartik http://akkartik.name/about -- -- 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.
diff -r abbde7b3841d src/testdir/Makefile --- a/src/testdir/Makefile Mon Sep 15 14:25:55 2014 +0200 +++ b/src/testdir/Makefile Wed Sep 24 08:54:56 2014 -0700 @@ -86,13 +86,13 @@ .in.out: -rm -rf $*.failed test.ok $(RM_ON_RUN) cp $*.ok test.ok - # Sleep a moment to avoid that the xterm title is messed up. - # 200 msec is sufficient, but only modern sleep supports a fraction of - # a second, fall back to a second if it fails. + @# Sleep a moment to avoid that the xterm title is messed up. + @# 200 msec is sufficient, but only modern sleep supports a fraction of + @# a second, fall back to a second if it fails. @-/bin/sh -c "sleep .2 > /dev/null 2>&1 || sleep 1" -$(RUN_VIM) $*.in - # For flaky tests retry one time. + @# 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; \ @@ -101,7 +101,7 @@ fi \ fi" - # Check if the test.out file matches test.ok. + @# Check if the test.out file matches test.ok. @/bin/sh -c "if test -f test.out; then \ if diff test.out $*.ok; \ then mv -f test.out $*.out; \
