From 6bd2053e02979790d399f423a31c55f8354aef8a Mon Sep 17 00:00:00 2001 From: Phil de Joux Date: Tue, 3 Dec 2024 06:46:30 -0500 Subject: [PATCH] Revert "SkipIfWindows" This reverts commit 61abac8f5dc91676228ea61692309ccf6c6f5e8c. --- .../PackageTests/ConditionalAndImport/cabal.test.hs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/cabal-testsuite/PackageTests/ConditionalAndImport/cabal.test.hs b/cabal-testsuite/PackageTests/ConditionalAndImport/cabal.test.hs index 1a07ef25ad5..22e16ba23a3 100644 --- a/cabal-testsuite/PackageTests/ConditionalAndImport/cabal.test.hs +++ b/cabal-testsuite/PackageTests/ConditionalAndImport/cabal.test.hs @@ -3,11 +3,7 @@ import Test.Cabal.Prelude normalizeWindowsOutput :: String -> String normalizeWindowsOutput = if isWindows then map (\x -> case x of '/' -> '\\'; _ -> x) else id -main = skipIfWindows "" >> test - -test :: IO () -test = cabalTest . withRepo "repo" . recordMode RecordMarked $ do - +main = cabalTest . withRepo "repo" . recordMode RecordMarked $ do let log = recordHeader . pure cabal "v2-run" [ "some-exe" ]