Skip to content

Commit 37be39e

Browse files
committed
merge
1 parent 16deb23 commit 37be39e

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

tests/FSharp.Test.Utilities/TestFramework.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ let config configurationName envVars =
229229
let requirePackage = requireFile packagesDir
230230
let requireArtifact = requireFile artifactsBinPath
231231
let CSC = requirePackage ("Microsoft.Net.Compilers" ++ "2.7.0" ++ "tools" ++ "csc.exe")
232-
let VBC = requireFile (packagesDir ++ "Microsoft.Net.Compilers" ++ "2.7.0" ++ "tools" ++ "vbc.exe")
232+
let VBC = requirePackage ("Microsoft.Net.Compilers" ++ "2.7.0" ++ "tools" ++ "vbc.exe")
233233
let ILDASM_EXE = if operatingSystem = "win" then "ildasm.exe" else "ildasm"
234234
let ILDASM = requirePackage (("runtime." + operatingSystem + "-" + architectureMoniker + ".Microsoft.NETCore.ILDAsm") ++ coreClrRuntimePackageVersion ++ "runtimes" ++ (operatingSystem + "-" + architectureMoniker) ++ "native" ++ ILDASM_EXE)
235235
let ILASM_EXE = if operatingSystem = "win" then "ilasm.exe" else "ilasm"
@@ -238,7 +238,7 @@ let config configurationName envVars =
238238
let coreclrdll = requirePackage (("runtime." + operatingSystem + "-" + architectureMoniker + ".Microsoft.NETCore.Runtime.CoreCLR") ++ coreClrRuntimePackageVersion ++ "runtimes" ++ (operatingSystem + "-" + architectureMoniker) ++ "native" ++ CORECLR_DLL)
239239
let PEVERIFY_EXE = if operatingSystem = "win" then "PEVerify.exe" else "PEVerify"
240240
let PEVERIFY = requireArtifact ("PEVerify" ++ configurationName ++ peverifyArchitecture ++ PEVERIFY_EXE)
241-
let FSI_FOR_SCRIPTS = artifactsBinPath ++ "fsi" ++ configurationName ++ fsiArchitecture ++ "fsi.exe"
241+
// let FSI_FOR_SCRIPTS = artifactsBinPath ++ "fsi" ++ configurationName ++ fsiArchitecture ++ "fsi.exe"
242242
let FSharpBuild = requireArtifact ("FSharp.Build" ++ configurationName ++ fsharpBuildArchitecture ++ "FSharp.Build.dll")
243243
let FSharpCompilerInteractiveSettings = requireArtifact ("FSharp.Compiler.Interactive.Settings" ++ configurationName ++ fsharpCompilerInteractiveSettingsArchitecture ++ "FSharp.Compiler.Interactive.Settings.dll")
244244

tests/fsharp/Compiler/Conformance/Properties/ILMemberAccessTests.fs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ namespace FSharp.Compiler.UnitTests
44

55
open FSharp.Compiler.SourceCodeServices
66
open FSharp.Reflection
7-
open FSharp.TestHelpers
8-
open FSharp.TestHelpers.Utilities
7+
open FSharp.Test
8+
open FSharp.Test.Utilities
9+
open FSharp.Test.Utilities.Utilities
910
open NUnit.Framework
1011

1112
[<TestFixture>]

0 commit comments

Comments
 (0)