Where this guide mentions the command build
it means either build.cmd
in the root folder for Windows, or build.sh
for Linux/macOS.
- Quick start: Running Tests
- Prerequisites
- Test Suites
- Other Tips and gotchas
- Solving common errors
- Approximate running times
To run the tests in Release mode:
build -testCompiler -c Release
build -testCompilerService -c Release
build -testCompilerComponentTests -c Release
build -testCambridge -c Release -ci -nobl
build -testFSharpQA -c Release -ci -nobl
build -testFSharpCore -c Release
build -testScripting -c Release
build -testVs -c Release
build -testAOT -c Release
build -testAll -c Release
Group name | OS | Description |
---|---|---|
testDesktop | Windows | Runs all net472 tests in 32 bit processes, this includes tests from other groups |
testCoreClr | Linux/Mac/Windows | Runs all .NetStandard and .NETCore tests in 64 bit processes, this includes tests from other groups |
testFSharpCore | Windows | Runs all test for FSharp.Core.dll |
testCambridge | Windows | Runs the Cambridge suite tests |
testFSharpQA | Windows | Runs the FSharpQA tests, requires Perl |
testVS | Windows + VS | Runs all VS integration tests |
testAOT | Windows | Run AOT/Trimming tests |
testCompiler | Windows | Runs a few quick compiler tests |
testScripting | Windows | Runs scripting fsx and fsi commandline tests |
test | Windows | Same as testDesktop |
testAll | Windows | Runs all above tests |
testAllButIntegration | Windows | Runs all minus integration tests |
Some test groups can only be run in CI
configuration, for that, you need to pass the -ci -bl
or -ci -nobl
arguments. Some test groups can only be run in Release mode, this is indicated below. Some tests can only be run on Windows.
To run tests, from a command prompt, use variations such as the following, depending on which test suite and build configuration you want.
If you're using Linux or macOS to develop, the group of tests that are known to succeed are all in -testCoreClr
. Any other -testXXX
argument will currently fail. An effort is underway to make testing and running tests easier on all systems.
The following tests must be run in Release mode with -c Release
:
build -testAll -c Release
build -test -c Release
build -testDesktop -c Release
build -testCoreClr -c Release
The following testsets open other windows and may interfere with you using your workstation, or change focus while you're doing something else:
- FSharpQA
- Cambridge
You can also submit pull requests to https://github.com/dotnet/fsharp and run the tests via continuous integration. Most people do wholesale testing that way. A few notes:
- Online, sometimes unrelated tests or builds may fail, a rerun may solve this
- A CI build can be restarted by closing/reopening the PR
- A new CI build will be started on each pushed commit
- CI builds that are not finished will be canceled on new commits. If you need to complete such runs, you can do so in the Checks tab of the PR by selecting the actual commit from the dropdown.
Finding the logs in the online CI results can be tricky, a small video can be found below under "Test gotchas".
The prerequisites are the same as for building the FSharp.sln
, plus, at a minimum:
- An installation of Perl, required for running FSharpQA tests
- Run
git clean -xdf -e .vs
before running tests when:- Making changes to the lexer or parser
- Between switching git branches
- When merging with latest
main
upstream branch.
The F# tests are split as follows:
-
FSharp Suite - Older suite with broad coverage of mainline compiler and runtime scenarios.
-
FSharpQA Suite - Broad and deep coverage of a variety of compiler, runtime, and syntax scenarios.
-
FSharp.Core.UnitTests - Validation of the core F# types and the public surface area of
FSharp.Core.dll
. -
FSharp.Compiler.Service.Tests - Validation of compiler internals.
-
FSharp.Compiler.ComponentTests - Validation of compiler APIs.
-
VisualFSharp.UnitTests - Validation of a wide range of behaviors in the F# Visual Studio project system and language service (including the legacy one).
-
FSharp.Editor.Tests - Visual F# Tools IDE Test Suite.
This is compiled using tests\fsharp\FSharp.Tests.FSharpSuite.fsproj to a unit test DLL which acts as a driver script. Each individual test is an xUnit test case, and so you can run it like any other xUnit test.
.\build.cmd net40 test-net40-fsharp
Tests are grouped in folders per area. Each test compiles and executes a test.fsx|fs
file in its folder using some combination of compiler or FSI flags specified in the FSharpSuite test project.
If the compilation and execution encounter no errors, the test is considered to have passed.
There are also negative tests checking code expected to fail compilation. See note about baseline under "Other Tips" below for tests checking expectations against "baseline" (.bsl) files.
The FSharpQA suite relies on Perl, StrawberryPerl package from https://strawberryperl.com.
These tests use the RunAll.pl
framework to execute, however the easiest way to run them is via the .\build
script, see usage examples.
Tests are grouped in folders per area. Each folder contains a number of source code files and a single env.lst
file. The env.lst
file defines a series of test cases, one per line.
Each test case runs an optional "pre command," compiles a given set of source files using given flags, optionally runs the resulting binary, then optionally runs a final "post command".
If all of these steps complete without issue, the test is considered to have passed.
Read more at tests/fsharpqa/readme.md.
For the FSharpQA suite, the list of test areas and their associated "tags" is stored at
tests\fsharpqa\source\test.lst // FSharpQA suite
Tags are in the left column, paths to to corresponding test folders are in the right column. If no tags are specified, all tests will be run.
If you want to re-run a particular test area, the easiest way to do so is to set a temporary tag for that area in test.lst (e.g. "RERUN") and adjust ttags
run.fsharpqa.test.fsx script and run it.
All test execution logs and result files will be dropped into the tests\TestResults
folder, and have file names matching
net40-fsharp-suite-*.*
net40-fsharpqa-suite-*.*
net40-compilerunit-suite-*.*
net40-coreunit-suite-*.*
vs-ideunit-suite-*.*
FSharp Test Suite works with a couple of .bsl
(or .bslpp
) files describing "expected test results" and are called the Baseline Tests. Those are matched against the actual output that resides under .err
or .vserr
files of the same name during test execution.
When doing so keep in mind to carefully review the diff before committing updated baseline files.
The .bslpp
(for: baseline pre-process) files are specially designed to enable substitution of certain tokens to generate the .bsl
file. You can look further about the pre-processing logic under tests/fsharp/TypeProviderTests.fs, this is used only for type provider tests for now.
To update baselines use this:
fsi tests\scripts\update-baselines.fsx
Use -n
to dry-run:
fsi tests\scripts\update-baselines.fsx -n
This section contains general tips, for solving errors see next section.
If you have the VisualFSharp.sln
open, or if you recently debugged it through VisualFSharpFull
as start-up project, certain tests may fail because files will be in use. It's best to close Visual Studio and any debugging sessions during a test run. It is fine to have VS open on a different solution, or to have it open from a different F# repo folder.
Finding the proper logs in the CI system can be daunting, this video shows you where to look once you have an open PR. It shows you how to get the FsharpQA
logs, but the same method applies to getting any other test logs.
The console output of the CI runs do not contain output of the FSharpQA tests, but for most other tests the console output contains enough info and can be found by clicking Raw output in the CI window, or clicking download logs:
You can increase the window buffer so that more lines of the console output can be scrolled back to, as opposed to them disappearing off the top. The default size on Windows is very small:
- Click top-left icon of the command window
- Go to Properties then Layout
- Select a higher Screen buffer size than the window size (this will add a scroll bar)
- You may want to increase the width and height as well
- Click OK.
Running tests should now be possible without admin privileges. If you find tests that don't run unless you are an admin, please create an issue.
When you switch branches, certain temporary files, as well as the .NET version (downloaded to .dotnet
folder) are likely to not be in sync anymore and can lead to curious build errors. Fix this by running git clean
like this (this will leave your VS settings intact):
git clean -xdf -e .vs
If you get "file in use" errors during cleaning, make sure to close Visual Studio and any running dotnet.exe
and VBCSCompiler.exe
, esp those that show up at the bottom of Process Explorer without parent process.
Some tests are known to fail on these older branches when run using one of the testXXXX
commandline arguments. However, -test
, -testAll
, -testCoreClr
and -testDesktop
are known to work on at least the dev16.6
and dev16.7
branches.
- Adding the
-norestore
flag to the commandline speeds up the build part a little bit. - When using the
-ci
flag (mandatory for some testsets), adding the-nobl
flag prevents creating the binary log files.
Some tests run in parallel by default, or use a hosted compiler to speed things up:
- The FSharp and FSharpQA suites will run test cases in parallel by default. You can comment out the relevant line (look for
PARALLEL_ARG
) to disable this. - By default, tests from the FSharpQA suite are run using a persistent, hosted version of the compiler. This speeds up test execution, as there is no need for the
fsc.exe
process to spin up repeatedly. To disable this, uncomment the relevant line (look forHOSTED_COMPILER
).
The following are common errors that users have encountered while running tests on their system.
The build often leaves dangling processes like HostedCompilerServer.exe
, VBCSCompiler.exe
or MSBuild.exe
. In Process Explorer you can see these processes having no parent process anymore. You can also use this to kill such processes. A typical error looks like and contains the process IDs (here 23152, 25252 and 24704):
C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets(4364,5): error MSB3026: Could not copy "D:\Projects\FSharp\artifacts\bin\FSharp.Core\Debug\net45\FSharp.Core.dll" to "D:\Projects\FSharp\tests\fsharpqa\testenv\bin\FSharp.Core.dll". Beginning retry 1 in 1000ms. The process cannot access the file 'D:\Projects\FSharp\tests\fsharpqa\testenv\bin\FSharp.Core.dll' because it is being used by another process. The file is locked by: "HostedCompilerServer (23152), HostedCompilerServer (25252), HostedCompilerServer (24704)" [D:\Projects\OpenSource\FSharp\tests\fsharpqa\testenv\src\ILComparer\ILComparer.fsproj]
This usually happens when you try to run tests without specifying -c Release
, or as -c Debug
(which is the default). Run the same set with -c Release
instead and the SOE should disappear.
Some tests can run for several minutes, this doesn't mean that your system froze:
To get an idea of how long it may take, or how much coffee you'll need while waiting, here are some rough indications from an older workstation run, using arguments -c Release -nobl -norestore
:
Testset | Approx running time | Ngen'ed running time |
---|---|---|
sln build time | 1 min* | n/a |
-testDesktop |
5 min | ? |
-testCoreClr |
36 min | ? |
-testCambridge |
72 min | 35 min |
-testFSharpQA |
13 min | ? |
-testCompiler |
30 seconds | n/a |
-testFSharpCore |
2 min | ? |
-testScripting |
2 min | 1.5 min |
-testVS |
13 min | ? |
- This is the build time when a previous build with the same configuration succeeded, and without
-ci
present, which always rebuilds the solution. With-norestore
the build part can go down to about 10-20 seconds, before tests are being run