diff options
Diffstat (limited to 'ci/build.ps1')
-rw-r--r-- | ci/build.ps1 | 3 |
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'; $_ } |