Skip to content

Commit 7056cb8

Browse files
committed
Revive E2E tests
1 parent d21aa8a commit 7056cb8

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

Directory.Build.props

-5
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,6 @@
8989
</Otherwise>
9090
</Choose>
9191

92-
<!-- It's important we set TFM before this, since FSharpTests.Directory.Build.props uses it.
93-
TODO(vlza): this build props looks outdated, since we only use $(FSharpTestCompilerVersion) in TP tests or cambridge suite (which we slowly want to migrate to xUnit).
94-
We probably should remove or revisit it. -->
95-
<Import Project="FSharpTests.Directory.Build.props" Condition=" '$(FSharpTestCompilerVersion)' != '' " />
96-
9792
<ItemGroup>
9893
<!-- If there is a README.md next to a project file, include it (for easier access in the IDE) -->
9994
<None Include="README.md" Condition="Exists('README.md')" />

tests/EndToEndBuildTests/Directory.Build.props

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<RollForward>LatestMajor</RollForward>
66
</PropertyGroup>
77

8+
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
89
<Import Project="$([MSBuild]::GetPathOfFileAbove('FSharpTests.Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
910

1011
<PropertyGroup>

tests/EndToEndBuildTests/EndToEndBuildTests.cmd

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ echo %__scriptpath%BasicProvider\TestBasicProvider.cmd -c %configuration%
2727
call %__scriptpath%BasicProvider\TestBasicProvider.cmd -c %configuration%
2828
if ERRORLEVEL 1 echo Error: TestBasicProvider failed && goto :failure
2929

30-
rem echo %__scriptpath%ComboProvider\TestComboProvider.cmd -c %configuration%
31-
rem call %__scriptpath%ComboProvider\TestComboProvider.cmd -c %configuration%
32-
rem if ERRORLEVEL 1 echo Error: TestComboProvider failed && goto :failure
30+
echo %__scriptpath%ComboProvider\TestComboProvider.cmd -c %configuration%
31+
call %__scriptpath%ComboProvider\TestComboProvider.cmd -c %configuration%
32+
if ERRORLEVEL 1 echo Error: TestComboProvider failed && goto :failure
3333

3434
:success
3535
endlocal

0 commit comments

Comments
 (0)