aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2020-01-26 14:26:01 -0800
committerJustin M. Keyes <justinkz@gmail.com>2020-01-26 17:30:47 -0800
commit1c3ca4f18fdc403813d8959b49626ac1c99e2c59 (patch)
tree4f2150ee9703be7ed7c7ea4bd56d21f3eca80eaf /ci
parentc4f4719ced9101195a84b350249ab2a105de627c (diff)
downloadrneovim-1c3ca4f18fdc403813d8959b49626ac1c99e2c59.tar.gz
rneovim-1c3ca4f18fdc403813d8959b49626ac1c99e2c59.tar.bz2
rneovim-1c3ca4f18fdc403813d8959b49626ac1c99e2c59.zip
mksession: always unix slashes "/" for filepaths
Diffstat (limited to 'ci')
-rw-r--r--ci/build.ps13
1 files changed, 3 insertions, 0 deletions
diff --git a/ci/build.ps1 b/ci/build.ps1
index 627dc69e88..a7a456f67a 100644
--- a/ci/build.ps1
+++ b/ci/build.ps1
@@ -173,6 +173,9 @@ if (-not $NoTests) {
# Functional tests
# The $LastExitCode from MSBuild can't be trusted
$failed = $false
+
+ # Run only this test file:
+ # $env:TEST_FILE = "test\functional\foo.lua"
cmake --build . --config $cmakeBuildType --target functionaltest -- $cmakeGeneratorArgs 2>&1 |
foreach { $failed = $failed -or
$_ -match 'functional tests failed with error'; $_ }