From 8f14207b9df9695bccafd7f4dfc958c0e998a708 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Thu, 13 Jun 2019 22:35:27 +0200 Subject: [PATCH] cleanup --- RELEASE_NOTES.md | 3 +-- .../SimpleHelloWorldTests.fs | 12 +----------- 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index fd84e167d4b..451a774c456 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,9 +1,8 @@ # Release Notes -## 5.14.1-alpha - 2019-06-13 +## 5.14.1 - 2019-06-13 * BUGFIX: Fake 5 native libraries support now works on unix - https://github.com/fsharp/FAKE/pull/2334 -* tbd ## 5.14.0 - 2019-06-12 diff --git a/src/test/Fake.Core.IntegrationTests/SimpleHelloWorldTests.fs b/src/test/Fake.Core.IntegrationTests/SimpleHelloWorldTests.fs index 081331b7587..2840766cd30 100644 --- a/src/test/Fake.Core.IntegrationTests/SimpleHelloWorldTests.fs +++ b/src/test/Fake.Core.IntegrationTests/SimpleHelloWorldTests.fs @@ -80,15 +80,5 @@ let tests = testCase "issue #2007 - native libs work" <| fun _ -> handleAndFormat <| fun () -> - //if Environment.isWindows then - let scriptName = "build.fsx" - let runArgs = sprintf "-v run %s" "build.fsx" - let scenario = "i002007-native-libs" - let path = scenarioTempPath scenario - - let result = fakeInPath runArgs scenario path - checkIntellisenseInPath scriptName (resolvePath scenario path) - ignore result - - + fakeRunAndCheck "build.fsx" "build.fsx" "i002007-native-libs" |> ignore ]