From 1c3ca4f18fdc403813d8959b49626ac1c99e2c59 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sun, 26 Jan 2020 14:26:01 -0800 Subject: mksession: always unix slashes "/" for filepaths --- ci/build.ps1 | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ci/build.ps1') 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'; $_ } -- cgit