diff options
Diffstat (limited to 'chapter06/vim.xml')
-rw-r--r-- | chapter06/vim.xml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/chapter06/vim.xml b/chapter06/vim.xml index 94672585a..c19db6334 100644 --- a/chapter06/vim.xml +++ b/chapter06/vim.xml @@ -48,6 +48,10 @@ <screen><userinput remap="pre">echo '#define SYS_VIMRC_FILE "/etc/vimrc"' >> src/feature.h</userinput></screen> + <para>Disable a test that fails:</para> + +<screen><userinput remap="pre">sed -i '/call/{s/split/xsplit/;s/303/492/}' src/testdir/test_recover.vim</userinput></screen> + <para>Prepare Vim for compilation:</para> <screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen> @@ -58,13 +62,12 @@ <para>To test the results, issue:</para> -<screen><userinput remap="test">make -j1 test</userinput></screen> +<screen><userinput remap="test">make -j1 test &> vim-test.log</userinput></screen> <para>However, this test suite outputs a lot of binary data to the screen, which can cause issues with the settings of the current terminal. This can be resolved by redirecting the output to a log file. A successful test - will result in the words "ALL DONE" at completion. One test, - Test_recover_root_dir() is known to fail, but is harmless.</para> + will result in the words "ALL DONE" at completion.</para> <para>Install the package:</para> |