diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2017-12-08 10:42:30 -0500 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2017-12-10 02:45:41 +0100 |
| commit | 4a5bc6275d09056ff0ccf5a29a878d48bbe58655 (patch) | |
| tree | b39c815b0eb8dee50e2bc5198b751cb96b470821 /ci | |
| parent | 3cc7ebf8107bddb42a566ede4c2a51818ff623c5 (diff) | |
| download | rneovim-4a5bc6275d09056ff0ccf5a29a878d48bbe58655.tar.gz rneovim-4a5bc6275d09056ff0ccf5a29a878d48bbe58655.tar.bz2 rneovim-4a5bc6275d09056ff0ccf5a29a878d48bbe58655.zip | |
ci: run oldtests in Appveyor #7705
Diffstat (limited to 'ci')
| -rw-r--r-- | ci/build.bat | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ci/build.bat b/ci/build.bat index 91eca9ef73..25f949b5e4 100644 --- a/ci/build.bat +++ b/ci/build.bat @@ -53,6 +53,12 @@ bin\nvim --version || goto :error :: Functional tests mingw32-make functionaltest VERBOSE=1 || goto :error +:: Old tests +setlocal +set PATH=%PATH%;C:\msys64\usr\bin +mingw32-make -C "%~dp0\..\src\nvim\testdir" VERBOSE=1 +endlocal + if defined USE_GCOV ( C:\msys64\usr\bin\bash -lc "cd /c/projects/neovim; bash <(curl -s https://codecov.io/bash) || echo 'codecov upload failed.'" ) |