Skip to content

Commit

Permalink
test: simplify test path
Browse files Browse the repository at this point in the history
  • Loading branch information
lervag committed Jan 8, 2021
1 parent 8725d47 commit 830681a
Show file tree
Hide file tree
Showing 519 changed files with 116 additions and 117 deletions.
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
doc/tags

test/issues/*
test/tests/test-compiler/latexrun
test/tests/test-syntax/syntax/
test/tests/test-textobj-targets/targets.vim/
test/test-compiler/latexrun
test/test-syntax/syntax/
test/test-textobj-targets/targets.vim/
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ When submitting code for vimtex, please adhere to the following standards:
## Running tests

New functionality should be accompanied by tests. Tests can be run from the
`test/tests` folder with `make`. The tests currently only run on Linux, and the
`test` folder with `make`. The tests currently only run on Linux, and the
following utilities are required to run all the tests:

- `wget`
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp .= ',../../../after'
let &rtp = '../..,' . &rtp
let &rtp .= ',../../after'
filetype plugin indent on
syntax enable

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

set nomore
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on
syntax on

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on
syntax on

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../../..,' . &rtp
let &rtp = '../../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../../..,' . &rtp
let &rtp = '../../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

set nomore
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

set nomore
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

set nomore
Expand Down
File renamed without changes.
18 changes: 18 additions & 0 deletions test/test-completion-bibtex-speed/bibspeed.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
\documentclass{article}
% \usepackage[square,sort,comma,numbers]{natbib}

\usepackage{biblatex}
\addbibresource{../common/huge.bib}
\addbibresource{../common/local1.bib}
\addbibresource{/home/lervag/.vim/bundle/vimtex/test/common/local2.bib}
\addbibresource{biblatex-examples.bib}

\begin{document}

Hello World!~\cite{AndersonHowCanHuman2009}

% \bibliographystyle{elsarticle-num}
% \bibliography{../common/huge.bib,../common/local1.bib,/home/lervag/.vim/bundle/vimtex/test/common/local2.bib,biblatex-examples.bib}
\printbibliography

\end{document}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
\usepackage[backend=biber,style=authoryear]{biblatex}

\addbibresource{biblatex-examples.bib}
\addbibresource{../resources/local1.bib}
\addbibresource{~/.vim/bundle/vimtex/test/tests/resources/local2.bib}
\addbibresource{../common/local1.bib}
\addbibresource{~/.vim/bundle/vimtex/test/common/local2.bib}

\begin{document}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

set nomore
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

set nomore
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

set nomore
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

set nomore
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

set nomore
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp .= ',../../../after'
let &rtp = '../..,' . &rtp
let &rtp .= ',../../after'
filetype plugin indent on
syntax enable

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

set nomore
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

set nomore
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on
syntax on

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

set fillchars=fold:\
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin indent on
syntax on

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

set nomore
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions test/tests/test-imaps/test.vim → test/test-imaps/test.vim
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp .= ',../../../after'
let &rtp = '../..,' . &rtp
let &rtp .= ',../../after'
filetype plugin indent on
syntax enable

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp .= ',../../../after'
let &rtp = '../..,' . &rtp
let &rtp .= ',../../after'
filetype plugin on
syntax enable

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin indent on

nnoremap q :qall!<cr>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on
syntax on

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

silent edit test-sources/main.tex
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp .= ',../../../after'
let &rtp = '../..,' . &rtp
let &rtp .= ',../../after'
filetype plugin indent on
syntax on

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on
syntax on

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on

nnoremap q :qall!<cr>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set nocompatible
let &rtp = '../../..,' . &rtp
let &rtp = '../..,' . &rtp
filetype plugin on
syntax on

Expand Down
File renamed without changes.
Loading

0 comments on commit 830681a

Please sign in to comment.