You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,7 +113,7 @@ Feature PRs have the following minimum requirements:
113
113
114
114
- For Visual F# Tools features, include a link to the[Visual F# Tools](https://github.com/microsoft/visualfsharp) issue for the feature.
115
115
116
-
- For F# Library features, if you have made additions to the FSharp.Core library public surface area, update[the SurfaceArea tests](https://github.com/Microsoft/visualfsharp/tree/fsharp4/src/fsharp/FSharp.Core.Unittests).
116
+
- For F# Library features, if you have made additions to the FSharp.Core library public surface area, update[the SurfaceArea tests](https://github.com/Microsoft/visualfsharp/tree/fsharp4/tests/FSharp.Core.UnitTests).
117
117
118
118
- For F# Language and Library features, you will be asked to submit a speclet for the feature to the[F# Language Design](https://github.com/fsharp/fslang-design) GitHub repository of speclets. In some cases you will only need to do this after your feature is accepted, but for more complex features you may be asked to do this during the review of the feature.
Copy file name to clipboardExpand all lines: TESTGUIDE.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,9 +25,9 @@ The F# tests are split as follows:
25
25
26
26
*[FSharpQA Suite](tests/fsharpqa/Source) - Broad and deep coverage of a variety of compiler, runtime, and syntax scenarios.
27
27
28
-
*[FSharp.Core.Unittests](src/fsharp/FSharp.Core.Unittests) - Validation of the core F# types and the public surface area of`FSharp.Core.dll`.
28
+
*[FSharp.Core.UnitTests](tests/FSharp.Core.UnitTests) - Validation of the core F# types and the public surface area of`FSharp.Core.dll`.
29
29
30
-
*[FSharp.Compiler.Unittests](src/fsharp/FSharp.Compiler.Unittests) - Validation of compiler internals.
30
+
*[FSharp.Compiler.UnitTests](tests/FSharp.Compiler.UnitTests) - Validation of compiler internals.
31
31
32
32
*[VisualFSharp.UnitTests](vsintegration/tests/unittests) - Visual F# Tools IDE Unit Test Suite
33
33
This suite exercises a wide range of behaviors in the F# Visual Studio project system and language service.
@@ -59,7 +59,7 @@ Tags are in the left column, paths to to corresponding test folders are in the r
59
59
60
60
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 then pass that as an argument to`build.cmd`:`build.cmd test-net40-fsharpqa include RERUN`.